:root {
  --background: #f4f1eb;
  --surface: #fbfaf7;
  --surface-strong: #ffffff;
  --foreground: #17212b;
  --muted-foreground: #66707a;
  --primary: #101923;
  --primary-soft: #182633;
  --accent: #a78c62;
  --accent-strong: #846b47;
  --border: #d9d3c9;
  --border-dark: rgba(255, 255, 255, 0.13);
  --destructive: #9e2e35;
  --success: #246d50;
  --sidebar-width: 304px;
  --container: 1180px;
  --font-body: "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
  --font-display: "Noto Naskh Arabic", serif;
  --shadow-subtle: 0 18px 50px rgba(22, 28, 35, 0.09);
}

* {
  box-sizing: border-box;
}

.icon {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(16, 25, 35, 0.06);
  color: var(--accent-strong);
}

.card-icon .icon {
  width: 22px;
  height: 22px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-block-start: 24px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  text-align: start;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--accent);
  color: white;
}

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

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

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

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

:focus-visible {
  outline: 3px solid #c5a878;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset-block-start: 14px;
  inset-inline-start: 14px;
  z-index: 1000;
  padding: 10px 16px;
  background: white;
  color: var(--primary);
  transform: translateY(-180%);
}

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

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 100;
  width: var(--sidebar-width);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 38px 34px 28px;
  color: #f5f1e9;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 100% 48px,
    var(--primary);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.04);
}

.sidebar::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 1px;
  height: 112px;
  background: var(--accent);
}

.sidebar__brand {
  min-height: 72px;
  display: flex;
  align-items: center;
}

.sidebar__brand img {
  width: 100%;
  max-width: 230px;
}

.sidebar__nav {
  display: grid;
  margin-block-start: 34px;
  border-block-start: 1px solid var(--border-dark);
}

.sidebar__nav a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  border-block-end: 1px solid var(--border-dark);
  color: #aeb7be;
  font-size: 13px;
  transition: color 180ms ease, padding 180ms ease;
}

.sidebar__nav a .nav-icon {
  width: 17px;
  height: 17px;
  color: #6d7982;
  transition: color 180ms ease;
}

.sidebar__nav a:hover .nav-icon,
.sidebar__nav a.is-active .nav-icon {
  color: var(--accent);
}

.sidebar__nav a:hover,
.sidebar__nav a.is-active {
  padding-inline-start: 10px;
  color: white;
}

.sidebar__nav a.is-active::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.sidebar__portals {
  margin-block-start: auto;
  padding-block-start: 24px;
}

.sidebar__portals p {
  margin: 0 0 10px;
  color: #737f89;
  font-size: 10px;
}

.sidebar__portals a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d5dadd;
  font-size: 11px;
  transition: color 180ms ease;
}

.sidebar__portals a span {
  flex: 1;
}

.sidebar__portals a b {
  font-weight: 400;
  opacity: 0.7;
}

.sidebar__portals a .portal-icon {
  width: 15px;
  height: 15px;
  color: #7d8891;
  transition: color 180ms ease;
}

.sidebar__portals a:hover {
  color: #dbc49f;
}

.sidebar__portals a:hover .portal-icon {
  color: #dbc49f;
}

.sidebar__contact {
  display: grid;
  gap: 2px;
  margin-block-start: 18px;
  padding-block-start: 18px;
  border-block-start: 1px solid var(--border-dark);
}

.sidebar__contact span,
.sidebar__contact small {
  color: #74808a;
  font-size: 9px;
}

.sidebar__contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar__contact .contact-icon {
  width: 13px;
  height: 13px;
  color: var(--accent);
}

.sidebar__contact a {
  justify-self: end;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.page {
  margin-right: var(--sidebar-width);
  margin-left: 0;
}

.mobile-header {
  display: none;
}

.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(480px, 1.08fr);
  background: var(--surface);
}

.hero__image {
  position: relative;
  min-height: 100dvh;
  background:
    linear-gradient(180deg, transparent 52%, rgba(8, 16, 23, 0.82)),
    url("/brand/dammam.jpg") 55% center / cover no-repeat;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset-block: 8%;
  inset-inline-start: 9%;
  width: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.hero__image-label {
  position: absolute;
  inset-inline: 9%;
  inset-block-end: 7%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  color: white;
}

.hero__image-label span {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
}

.hero__image-label small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.hero__content {
  align-self: center;
  padding: 72px clamp(36px, 6vw, 96px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  margin-inline-end: 12px;
  vertical-align: middle;
  background: currentColor;
}

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

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  max-width: 700px;
  margin-block-end: 28px;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero__lead {
  max-width: 610px;
  margin-block-end: 34px;
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 0;
  padding: 12px 24px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button--primary {
  background: var(--primary);
  color: white;
}

.button--primary:hover {
  background: var(--accent-strong);
}

.button--text {
  min-height: 48px;
  padding-inline: 0;
  color: var(--primary);
  border-block-end: 1px solid var(--border);
}

.button--text:hover {
  color: var(--accent-strong);
  border-color: var(--accent);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-block-start: 58px;
  padding-block-start: 24px;
  border-block-start: 1px solid var(--border);
}

.hero__meta div {
  display: grid;
  gap: 2px;
}

.hero__meta strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}

.hero__meta span {
  color: var(--muted-foreground);
  font-size: 9px;
}

.services,
.practice,
.consultation,
.training {
  padding: 110px clamp(28px, 7vw, 112px);
}

.services {
  background: var(--background);
}

.section-header {
  max-width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin: 0 auto 58px;
}

.section-header h2,
.about h2,
.consultation h2,
.contact h2,
.results h2 {
  margin-block-end: 0;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-header > p {
  margin-block-end: 8px;
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 2;
}

.services__grid {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  min-width: 0;
  background: var(--surface);
}

.service-card__image {
  position: relative;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  background: var(--primary);
}

.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 17, 24, 0.72));
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55);
  transition: transform 320ms ease, filter 320ms ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.025);
  filter: saturate(0.82);
}

.service-card__image > span {
  position: absolute;
  inset-inline-start: 24px;
  inset-block-end: 18px;
  z-index: 2;
  color: white;
  font-family: var(--font-display);
  font-size: 22px;
}

.service-card__body {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.service-card h3 {
  margin-block-end: 16px;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.35;
}

.service-card p {
  margin-block-end: 26px;
  color: var(--muted-foreground);
  font-size: 12px;
  line-height: 2;
}

.service-card__body > a {
  width: fit-content;
  margin-block-start: auto;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
}

.about {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  background: var(--primary);
  color: white;
  overflow: hidden;
}

.about__portrait {
  position: relative;
  align-self: end;
  min-height: 700px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.about__portrait::before {
  content: "411130";
  position: absolute;
  inset-block-start: 10%;
  inset-inline-start: 8%;
  color: rgba(255, 255, 255, 0.035);
  font-family: Arial, sans-serif;
  font-size: clamp(80px, 9vw, 160px);
  font-weight: 800;
}

.about__portrait img {
  position: relative;
  z-index: 2;
  width: min(88%, 590px);
}

.about__frame {
  position: absolute;
  inset: 12% 9% 0;
  border: 1px solid rgba(167, 140, 98, 0.45);
}

.about__content {
  max-width: 760px;
  padding: 90px clamp(36px, 7vw, 112px);
}

.about__content .eyebrow {
  color: #cbb58f;
}

.about__content > p:not(.eyebrow) {
  max-width: 660px;
  margin-block: 30px;
  color: #aeb7be;
  font-size: 13px;
  line-height: 2.1;
}

.about blockquote {
  max-width: 650px;
  margin: 0;
  padding: 18px 24px;
  border-inline-start: 1px solid var(--accent);
  color: #e3e6e8;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.9;
}

.about__signature {
  width: 220px;
  margin-block-start: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.74;
}

.about__name {
  display: grid;
  gap: 2px;
}

.about__name strong {
  font-family: var(--font-display);
  font-size: 18px;
}

.about__name span {
  color: #89959e;
  font-size: 10px;
}

.practice {
  background: var(--surface);
}

.practice__grid {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  border-block-start: 1px solid var(--border);
}

.practice-item {
  min-height: 116px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-block-end: 1px solid var(--border);
  transition: background 180ms ease, color 180ms ease;
}

.practice-item:nth-child(odd) {
  border-inline-end: 1px solid var(--border);
}

.practice-item:hover {
  background: var(--primary);
  color: white;
}

.practice-item__number {
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.practice-item__copy {
  display: grid;
  gap: 4px;
}

.practice-item__copy strong {
  font-family: var(--font-display);
  font-size: 20px;
}

.practice-item__copy small {
  color: var(--muted-foreground);
  font-size: 10px;
}

.practice-item:hover .practice-item__copy small {
  color: #aab3ba;
}

.practice-item__arrow {
  color: var(--accent);
  font-size: 20px;
}

.results {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 90px clamp(28px, 7vw, 112px);
  color: white;
  background: url("/brand/achievements.jpg") center / cover no-repeat;
}

.results__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 16, 22, 0.83);
}

.results__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  text-align: center;
}

.results__content .eyebrow {
  color: #d2bd98;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-block-start: 58px;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.results__grid div {
  display: grid;
  gap: 8px;
  padding: 32px 18px;
}

.results__grid div + div {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.18);
}

.results__grid strong {
  color: #dfcfb2;
  font-family: var(--font-display);
  font-size: 34px;
  font-variant-numeric: tabular-nums;
}

.results__grid span {
  color: #b5bdc3;
  font-size: 10px;
}

.consultation {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
  gap: clamp(54px, 8vw, 120px);
  background: var(--background);
}

.consultation__intro > p:not(.eyebrow) {
  max-width: 560px;
  margin-block: 26px;
  color: var(--muted-foreground);
  font-size: 12px;
  line-height: 2;
}

.consultation__intro > a {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
}

.booking-preview {
  padding: 38px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
}

.booking-preview ol {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.booking-preview li {
  min-height: 84px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-block-end: 1px solid var(--border);
}

.booking-preview li > span {
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 18px;
}

.booking-preview li div {
  display: grid;
  gap: 2px;
}

.booking-preview li strong {
  font-family: var(--font-display);
  font-size: 19px;
}

.booking-preview li small {
  color: var(--muted-foreground);
  font-size: 10px;
}

.booking-preview .button {
  width: 100%;
}

.consultation__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 40px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
}

.field {
  display: grid;
  gap: 8px;
}

.field--wide,
.form-notice {
  grid-column: 1 / -1;
}

.field label {
  color: #49545e;
  font-size: 10px;
  font-weight: 700;
}

.field label span {
  color: var(--destructive);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 11px 14px;
  background: #fbfaf8;
  color: var(--foreground);
  text-align: start;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input[type="file"] {
  padding-block: 8px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-strong);
  outline: none;
  box-shadow: 0 0 0 3px rgba(167, 140, 98, 0.18);
}

.form-notice {
  padding: 12px 14px;
  border-inline-start: 3px solid;
  font-size: 11px;
}

.form-notice--success {
  border-color: var(--success);
  background: #edf7f1;
  color: var(--success);
}

.form-notice--error {
  border-color: var(--destructive);
  background: #fbefef;
  color: var(--destructive);
}

.training {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  color: white;
  background:
    linear-gradient(90deg, rgba(9, 16, 22, 0.96), rgba(9, 16, 22, 0.78)),
    url("/brand/achievements.jpg") center / cover no-repeat;
}

.training__content {
  max-width: 600px;
}

.training__content .eyebrow {
  color: #d2bd98;
}

.training__content h2 {
  margin-block-end: 26px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.25;
}

.training__content > p:not(.eyebrow) {
  color: #adb6bd;
  font-size: 12px;
  line-height: 2.1;
}

.training__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--foreground);
}

.contact {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(520px, 1.2fr);
  background: var(--surface);
}

.contact__content {
  align-self: center;
  padding: 80px clamp(34px, 7vw, 110px);
}

.contact address {
  display: grid;
  margin-block-start: 34px;
  font-style: normal;
}

.contact address div {
  display: grid;
  gap: 3px;
  padding-block: 14px;
  border-block-end: 1px solid var(--border);
}

.contact address span {
  color: var(--muted-foreground);
  font-size: 9px;
}

.contact address strong,
.contact address a {
  font-size: 12px;
  font-weight: 600;
}

.contact__map {
  min-height: 540px;
  filter: grayscale(0.85) contrast(0.92);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  border: 0;
}

.footer {
  min-height: 170px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 42px clamp(28px, 6vw, 90px);
  background: #0b1219;
  color: #8e989f;
}

.footer img {
  width: 230px;
}

.footer p,
.footer a {
  margin: 0;
  font-size: 9px;
}

.footer a {
  color: #d1ba91;
}

.whatsapp {
  position: fixed;
  left: 24px;
  inset-block-end: 24px;
  z-index: 80;
  min-width: 56px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 10px 30px rgba(10, 31, 24, 0.28);
  font-size: 10px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.whatsapp svg {
  width: 28px;
  height: 28px;
}

.whatsapp:hover {
  background: #1eb356;
  transform: translateY(-2px);
}

.page--inner {
  min-height: 100dvh;
  background: var(--surface);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-block-end: 34px;
  color: var(--muted-foreground);
  font-size: 10px;
}

.breadcrumb a:hover {
  color: var(--accent-strong);
}

.service-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  background: var(--surface);
}

.service-hero__content {
  align-self: center;
  padding: 90px clamp(34px, 7vw, 112px);
}

.service-hero h1,
.booking-intro h1,
.not-found h1 {
  margin-block-end: 26px;
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 84px);
  font-weight: 700;
  line-height: 1.12;
}

.service-hero__content > p:not(.eyebrow) {
  max-width: 720px;
  margin-block-end: 32px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 2.1;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button--outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
}

.button--outline:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.button--gold {
  background: var(--accent);
  color: var(--primary);
}

.button--gold:hover {
  background: #c6ab7d;
}

.service-hero__visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(11, 18, 25, 0.78), rgba(11, 18, 25, 0.9)),
    url("/brand/dammam.jpg") center / cover no-repeat;
  color: white;
}

.service-hero__visual::before,
.service-hero__visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 177, 136, 0.3);
}

.service-hero__visual::before {
  inset: 9%;
}

.service-hero__visual::after {
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.service-hero__visual > span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 190px;
  aspect-ratio: 1;
  color: #d1ba91;
}

.service-hero__visual > span .icon {
  width: 84px;
  height: 84px;
  stroke-width: 1.1;
}

.service-hero__visual > small {
  position: absolute;
  inset-inline-start: 9%;
  inset-block-end: 8%;
  color: #9ba5ad;
  font-size: 9px;
}

.service-details {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(50px, 8vw, 120px);
  padding: 110px clamp(28px, 7vw, 112px);
  background: var(--background);
}

.service-details__intro h2,
.service-process h2,
.service-cta h2,
.booking-success h2 {
  margin-block-end: 22px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.25;
}

.service-details__intro > p:not(.eyebrow) {
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 2.1;
}

.service-details__list {
  border-block-start: 1px solid var(--border);
}

.service-details__list article {
  min-height: 100px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  border-block-end: 1px solid var(--border);
  transition: padding 180ms ease;
}

.service-details__list article:hover {
  padding-inline-start: 6px;
}

.service-details__list span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--background);
  color: var(--accent-strong);
}

.service-details__list span .icon {
  width: 20px;
  height: 20px;
}

.service-details__list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 23px;
}

.service-process {
  padding: 110px clamp(28px, 7vw, 112px);
  background: var(--surface);
}

.service-process header {
  max-width: var(--container);
  margin: 0 auto 50px;
}

.service-process ol {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  padding: 0;
  border-block-start: 1px solid var(--border);
  list-style: none;
}

.service-process li {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-block-end: 1px solid var(--border);
}

.service-process li + li {
  border-inline-start: 1px solid var(--border);
}

.service-process li > span {
  margin-block-end: auto;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 16px;
}

.service-process li strong {
  font-family: var(--font-display);
  font-size: 21px;
}

.service-process li p {
  margin: 7px 0 0;
  color: var(--muted-foreground);
  font-size: 10px;
  line-height: 1.9;
}

.service-cta {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 70px clamp(28px, 7vw, 112px);
  background: var(--primary);
  color: white;
}

.service-cta h2 {
  max-width: 800px;
  margin: 0;
}

.service-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 12px;
}

.not-found {
  min-height: 70dvh;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 80px clamp(28px, 7vw, 112px);
}

.booking-page {
  padding: 72px clamp(24px, 6vw, 88px) 110px;
  background: var(--background);
}

.booking-intro {
  max-width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 60px;
  margin: 0 auto 50px;
}

.booking-intro h1 {
  max-width: 800px;
  font-size: clamp(46px, 5vw, 72px);
}

.booking-intro > div > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 2;
}

.booking-intro aside {
  display: grid;
  gap: 2px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.booking-intro aside span,
.booking-intro aside small {
  color: var(--muted-foreground);
  font-size: 9px;
}

.booking-intro aside strong {
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 26px;
}

.booking-shell,
.booking-success,
.booking-error {
  max-width: var(--container);
  margin-inline: auto;
}

.booking-shell {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-block-end: 1px solid var(--border);
  list-style: none;
}

.stepper li {
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 28px;
  color: #8a9299;
}

.stepper li + li {
  border-inline-start: 1px solid var(--border);
}

.stepper li::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -1px;
  height: 2px;
  background: transparent;
}

.stepper li.is-active {
  color: var(--foreground);
}

.stepper li.is-active::after,
.stepper li.is-complete::after {
  background: var(--accent);
}

.stepper li > span {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.stepper li.is-active > span {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary);
}

.stepper li.is-complete > span {
  border-color: var(--success);
  color: var(--success);
}

.stepper strong {
  font-size: 11px;
}

.multi-step-form {
  padding: clamp(28px, 5vw, 62px);
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step[hidden] {
  display: none;
}

.form-step legend {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.3;
}

.form-step legend > span {
  color: var(--accent-strong);
  font-family: var(--font-body);
  font-size: 10px;
}

.step-description {
  max-width: 720px;
  margin-block: 12px 34px;
  color: var(--muted-foreground);
  font-size: 11px;
}

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

.service-option {
  position: relative;
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.service-option:hover {
  border-color: var(--accent);
}

.service-option:has(input:checked) {
  border-color: var(--accent-strong);
  background: #f6f1e8;
  box-shadow: inset -3px 0 0 var(--accent);
}

.service-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-strong);
}

.service-option__text {
  display: grid;
  gap: 2px;
}

.service-option__icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--background);
  color: var(--accent-strong);
  transition: background 180ms ease, color 180ms ease;
}

.service-option__icon .icon {
  width: 20px;
  height: 20px;
}

.service-option:has(input:checked) .service-option__icon {
  background: var(--accent-strong);
  color: white;
}

.service-option strong {
  font-family: var(--font-display);
  font-size: 17px;
}

.service-option small {
  color: var(--muted-foreground);
  font-size: 9px;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-block-start: 36px;
  padding-block-start: 26px;
  border-block-start: 1px solid var(--border);
}

.form-step > .field {
  max-width: 820px;
}

.field > small {
  color: var(--muted-foreground);
  font-size: 9px;
}

.upload-field {
  max-width: 820px;
  margin-block-start: 26px;
  padding: 26px;
  border: 1px dashed #bdb4a6;
  background: #f8f6f1;
}

.upload-field > label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block-end: 12px;
  font-size: 11px;
  font-weight: 700;
}

.upload-field__icon {
  width: 16px;
  height: 16px;
  color: var(--accent-strong);
}

.contact-method-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.contact-method-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 76px;
  padding: 14px 10px;
  border: 1px solid var(--border);
  background: #fbfaf8;
  color: var(--muted-foreground);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.contact-method-option .icon {
  width: 19px;
  height: 19px;
}

.contact-method-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-method-option:hover {
  border-color: var(--accent);
}

.contact-method-option:has(input:checked) {
  border-color: var(--accent-strong);
  background: #f6f1e8;
  color: var(--foreground);
  box-shadow: inset 0 -3px 0 var(--accent);
}

.upload-field input {
  width: 100%;
  min-height: 48px;
}

.upload-field > p,
.file-list {
  margin: 8px 0 0;
  color: var(--muted-foreground);
  font-size: 9px;
}

.file-list {
  display: grid;
  gap: 5px;
  padding-inline-start: 18px;
}

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block-start: 26px;
  padding: 18px;
  background: #f7f4ee;
  cursor: pointer;
  font-size: 10px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-block-start: 3px;
  accent-color: var(--accent-strong);
}

.consent b {
  color: var(--destructive);
}

.booking-error {
  margin-block-end: 20px;
  padding: 16px 18px;
  border-inline-start: 3px solid var(--destructive);
  background: #fbefef;
  color: var(--destructive);
  font-size: 12px;
}

.booking-success {
  min-height: 420px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: clamp(30px, 6vw, 80px);
  border: 1px solid var(--border);
  background: var(--surface-strong);
}

.booking-success > span {
  width: 74px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--success);
  border-radius: 50%;
  color: var(--success);
  font-size: 28px;
}

.booking-success p {
  color: var(--muted-foreground);
}

.booking-success strong {
  color: var(--foreground);
}

.admin-body {
  min-height: 100dvh;
  background: #f3f1ec;
}

.admin-header {
  min-height: 108px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 22px clamp(24px, 5vw, 72px);
  background: var(--surface-strong);
  border-block-end: 1px solid var(--border);
}

.admin-header img {
  width: 220px;
}

.admin-header p,
.admin-header h1 {
  margin: 0;
}

.admin-header p {
  color: var(--accent-strong);
  font-size: 9px;
}

.admin-header h1 {
  font-family: var(--font-display);
  font-size: 27px;
}

.admin-header > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--border);
  font-size: 10px;
}

.admin-main {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
  padding-block: 44px 80px;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-block-end: 36px;
  background: var(--border);
  border: 1px solid var(--border);
}

.admin-summary div {
  position: relative;
  min-height: 120px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px;
  background: var(--surface-strong);
}

.admin-summary__icon {
  position: absolute;
  inset-block-start: 20px;
  inset-inline-end: 22px;
  width: 22px;
  height: 22px;
  color: var(--accent-strong);
  opacity: 0.6;
}

.admin-summary span {
  color: var(--muted-foreground);
  font-size: 10px;
}

.admin-summary strong {
  font-family: var(--font-display);
  font-size: 32px;
}

.admin-section {
  margin-block-start: 32px;
  padding: 30px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

.admin-section > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-block-end: 24px;
}

.admin-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
}

.admin-section > header > span {
  color: var(--muted-foreground);
  font-size: 10px;
}

.admin-empty {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #f8f6f1;
  text-align: center;
}

.admin-empty h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
}

.admin-empty p {
  max-width: 620px;
  color: var(--muted-foreground);
  font-size: 10px;
}

.submission-list {
  display: grid;
  gap: 10px;
}

.submission-card {
  border: 1px solid var(--border);
  background: var(--surface);
}

.submission-card summary {
  min-height: 80px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
}

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

.submission-card summary > div {
  display: grid;
  gap: 2px;
}

.submission-card summary strong {
  font-family: var(--font-display);
  font-size: 18px;
}

.submission-card summary small,
.submission-card summary > b {
  color: var(--muted-foreground);
  font-size: 9px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 22px;
  margin-block-end: 4px;
  padding: 3px 8px;
  border: 1px solid #bfdaca;
  background: #edf7f1;
  color: var(--success);
  font-size: 8px;
  font-weight: 700;
}

.status-badge--legacy {
  border-color: #d9d3c9;
  background: #f2efe8;
  color: var(--muted-foreground);
}

.submission-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--background);
  color: var(--accent-strong);
}

.submission-card__icon .icon {
  width: 21px;
  height: 21px;
}

.submission-card__icon--legacy {
  color: var(--muted-foreground);
}

.submission-card__body {
  padding: 24px;
  border-block-start: 1px solid var(--border);
  background: white;
}

.submission-card__body dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--border);
  border: 1px solid var(--border);
}

.submission-card__body dl > div {
  min-height: 80px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  background: var(--surface);
}

.submission-card__body dl > div.wide {
  grid-column: 1 / -1;
}

.submission-card dt {
  color: var(--muted-foreground);
  font-size: 8px;
}

.submission-card dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 11px;
}

.attachment-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-block-start: 14px;
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 700;
}

.attachment-link .icon {
  width: 13px;
  height: 13px;
}

.attachment-page {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
  padding-block: 60px;
}

.attachment-page > a {
  color: var(--accent-strong);
  font-size: 10px;
}

.attachment-page h1 {
  margin-block-end: 8px;
  font-family: var(--font-display);
  font-size: 52px;
}

.attachment-list {
  display: grid;
  gap: 1px;
  margin-block-start: 36px;
  padding: 1px;
  background: var(--border);
  list-style: none;
}

.attachment-list li {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px;
  background: white;
}

.attachment-list li > div {
  display: grid;
  gap: 2px;
}

.attachment-list small {
  color: var(--muted-foreground);
  font-size: 9px;
}

.home-hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  background: var(--surface);
}

.home-hero__content {
  align-self: center;
  padding: 80px clamp(38px, 7vw, 112px);
}

.home-hero h1 {
  max-width: 760px;
  margin-block-end: 28px;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-hero__content > p:not(.eyebrow) {
  max-width: 650px;
  margin-block-end: 34px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 2.1;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
}

.home-hero dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 58px 0 0;
  padding-block-start: 24px;
  border-block-start: 1px solid var(--border);
}

.home-hero dl div {
  display: grid;
  gap: 2px;
}

.home-hero dt {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}

.home-hero dd {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 9px;
}

.home-hero__image {
  position: relative;
  min-height: 100dvh;
  background:
    linear-gradient(180deg, rgba(8, 15, 22, 0.06), rgba(8, 15, 22, 0.82)),
    url("/brand/dammam.jpg") 54% center / cover no-repeat;
}

.home-hero__image::before {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.home-hero__image span,
.home-hero__image small {
  position: absolute;
  z-index: 2;
  inset-block-end: 7%;
  color: white;
}

.home-hero__image span {
  inset-inline-start: 9%;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
}

.home-hero__image small {
  inset-inline-end: 9%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.home-services,
.home-articles,
.services-catalogue,
.articles-library {
  padding: 110px clamp(28px, 7vw, 112px);
}

.home-services,
.articles-library {
  background: var(--background);
}

.home-articles,
.services-catalogue {
  background: var(--surface);
}

.content-header {
  max-width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 60px;
  margin: 0 auto 52px;
}

.content-header h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.2;
}

.content-header > p,
.content-header__action p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 11px;
  line-height: 2;
}

.content-header__action {
  display: grid;
  gap: 14px;
}

.content-header__action a {
  width: fit-content;
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 700;
}

.home-bento {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 12px;
  margin: 0 auto;
}

.home-bento__card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 4;
  padding: 28px;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.home-bento__card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.home-bento__card--1 {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 420px;
  color: white;
  background:
    linear-gradient(180deg, rgba(10, 17, 24, 0.22), rgba(10, 17, 24, 0.93)),
    url("/brand/litigation.jpg") center / cover no-repeat;
}

.home-bento__card--2 {
  grid-column: span 5;
  background: #d7c7aa;
  border-color: #d7c7aa;
}

.home-bento__card--3 {
  grid-column: span 5;
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.home-bento__card--4,
.home-bento__card--5,
.home-bento__card--6 {
  grid-column: span 4;
}

.home-bento__card > span {
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 17px;
}

.home-bento__card--1 > span,
.home-bento__card--3 > span {
  color: #d8c39e;
  background: rgba(255, 255, 255, 0.12);
}

.home-bento__card h3 {
  margin-block-end: 10px;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.25;
}

.home-bento__card p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 10px;
}

.home-bento__card--1 p,
.home-bento__card--3 p {
  color: #aeb7be;
}

.home-bento__card > strong {
  color: var(--accent-strong);
  font-size: 9px;
}

.home-bento__card--1 > strong,
.home-bento__card--3 > strong {
  color: #d8c39e;
}

.home-about {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  overflow: hidden;
  background: var(--primary);
  color: white;
}

.home-about__portrait {
  position: relative;
  align-self: end;
  min-height: 700px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.home-about__portrait::before {
  content: "";
  position: absolute;
  inset: 11% 10% 0;
  border: 1px solid rgba(167, 140, 98, 0.45);
}

.home-about__portrait img {
  position: relative;
  z-index: 2;
  width: min(88%, 590px);
}

.home-about__content {
  max-width: 790px;
  padding: 90px clamp(38px, 7vw, 112px);
}

.home-about__content .eyebrow {
  color: #d2bd98;
}

.home-about h2 {
  margin-block-end: 26px;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 70px);
  line-height: 1.18;
}

.home-about__content > p:not(.eyebrow) {
  color: #adb6bd;
  font-size: 12px;
  line-height: 2.1;
}

.home-about blockquote {
  margin: 28px 0;
  padding: 14px 20px;
  border-inline-start: 1px solid var(--accent);
  color: #e6e8ea;
  font-family: var(--font-display);
  font-size: 20px;
}

.home-about__signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-block-end: 26px;
}

.home-about__signature img {
  width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.home-about__signature span {
  display: grid;
  gap: 2px;
}

.home-about__signature small {
  color: #89959e;
  font-size: 9px;
}

.home-about .button--outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.home-results {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(560px, 1.3fr);
  align-items: center;
  gap: 60px;
  padding: 80px clamp(28px, 7vw, 112px);
  background:
    linear-gradient(90deg, rgba(9, 16, 22, 0.95), rgba(9, 16, 22, 0.76)),
    url("/brand/achievements.jpg") center / cover no-repeat;
  color: white;
}

.home-results h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 60px);
}

.home-results .eyebrow {
  color: #d2bd98;
}

.home-results dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-block-start: 1px solid rgba(255, 255, 255, 0.18);
}

.home-results dl div {
  display: grid;
  gap: 2px;
  min-height: 130px;
  align-content: center;
  padding: 20px;
  border-block-end: 1px solid rgba(255, 255, 255, 0.18);
}

.home-results dl div:nth-child(odd) {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.18);
}

.home-results dt {
  color: #dfcfb2;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
}

.home-results dd {
  margin: 0;
  color: #aeb7be;
  font-size: 9px;
}

.home-article-grid,
.articles-grid {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 auto;
}

.home-article,
.article-card {
  min-height: 340px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

.home-article--featured,
.article-card--featured {
  grid-row: span 2;
  min-height: 692px;
  color: white;
  background:
    linear-gradient(180deg, rgba(11, 18, 25, 0.38), rgba(11, 18, 25, 0.96)),
    url("/brand/contracts.jpg") center / cover no-repeat;
  border-color: var(--primary);
}

.home-article > a,
.article-card > a {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.home-article > a > div,
.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--accent-strong);
  font-size: 9px;
}

.home-article--featured > a > div,
.article-card--featured .article-card__meta {
  color: #d8c39e;
}

.home-article h3,
.article-card h2 {
  max-width: 620px;
  margin: auto 0 14px;
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.3;
}

.home-article p,
.article-card p {
  color: var(--muted-foreground);
  font-size: 10px;
  line-height: 2;
}

.home-article--featured p,
.article-card--featured p {
  color: #b6bec4;
}

.home-article footer,
.article-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-block-start: 18px;
  padding-block-start: 16px;
  border-block-start: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 9px;
}

.home-article--featured footer,
.article-card--featured footer {
  border-color: rgba(255, 255, 255, 0.18);
  color: #aeb7be;
}

.home-article footer strong,
.article-card footer strong {
  color: var(--accent-strong);
}

.home-article--featured footer strong,
.article-card--featured footer strong {
  color: #d8c39e;
}

.home-final-cta {
  min-height: 350px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: 60px;
  padding: 70px clamp(28px, 7vw, 112px);
  background: #d7c7aa;
}

.home-final-cta h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.2;
}

.home-final-cta > div:last-child {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.home-final-cta > div:last-child > a:not(.button) {
  color: #5d4a30;
  font-size: 10px;
}

.page-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  padding: 90px clamp(28px, 7vw, 112px);
  background: var(--primary);
  color: white;
}

.page-hero > div {
  max-width: 950px;
}

.page-hero .breadcrumb {
  color: #95a0a8;
}

.page-hero .eyebrow {
  color: #d2bd98;
}

.page-hero h1,
.about-page-hero h1,
.contact-page h1,
.training-page h1 {
  margin-block-end: 24px;
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 84px);
  line-height: 1.12;
}

.page-hero > div > p:not(.eyebrow) {
  max-width: 760px;
  color: #adb6bd;
  font-size: 13px;
  line-height: 2;
}

.page-hero > aside {
  min-width: 180px;
  display: grid;
  gap: 2px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero > aside strong {
  color: #d8c39e;
  font-family: var(--font-display);
  font-size: 46px;
}

.page-hero > aside span {
  color: #9da7af;
  font-size: 9px;
}

.page-hero--articles {
  min-height: 580px;
  background:
    linear-gradient(90deg, rgba(10, 17, 24, 0.98), rgba(10, 17, 24, 0.74)),
    url("/brand/contracts.jpg") center / cover no-repeat;
}

.bento-services {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 10px;
  margin: 0 auto;
}

.bento-service {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  transition: transform 180ms ease, border-color 180ms ease;
}

.bento-service:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

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

.bento-service--dark {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.bento-service--gold {
  background: #d7c7aa;
  border-color: #d7c7aa;
}

.bento-service__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 25, 35, 0.06);
  color: var(--accent-strong);
  transition: background 180ms ease, transform 180ms ease;
}

.bento-service__icon .icon {
  width: 21px;
  height: 21px;
}

.bento-service:hover .bento-service__icon {
  transform: translateY(-2px);
}

.bento-service--dark .bento-service__icon,
.bento-service--gold .bento-service__icon {
  background: rgba(255, 255, 255, 0.16);
}

.bento-service--dark .bento-service__icon {
  color: #d8c39e;
}

.bento-service h2 {
  margin-block-end: 8px;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.25;
}

.bento-service p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 9px;
}

.bento-service--dark p {
  color: #aeb7be;
}

.bento-service__link {
  color: var(--accent-strong);
  font-size: 9px;
  font-weight: 700;
}

.bento-service--dark .bento-service__link {
  color: #d8c39e;
}

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

.article-page {
  background: var(--surface);
}

.article-page__header {
  padding: 80px max(28px, calc((100% - 980px) / 2));
  background: var(--primary);
  color: white;
}

.article-page__header .breadcrumb {
  color: #94a0a8;
}

.article-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: #d2bd98;
  font-size: 9px;
}

.article-page__header h1 {
  max-width: 950px;
  margin-block: 30px 24px;
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 82px);
  line-height: 1.18;
}

.article-page__header > p {
  max-width: 800px;
  color: #b2bbc1;
  font-size: 14px;
  line-height: 2;
}

.article-page__layout {
  max-width: 1100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 70px;
  margin: 0 auto;
  padding: 80px 28px 110px;
}

.article-body {
  max-width: 760px;
}

.article-body section {
  padding-block: 8px 34px;
}

.article-body h2 {
  margin-block-end: 14px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.35;
}

.article-body p {
  color: #46515b;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 2.1;
}

.article-disclaimer {
  margin-block-start: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--background);
}

.article-disclaimer strong {
  color: var(--accent-strong);
  font-size: 11px;
}

.article-disclaimer p {
  margin: 7px 0 0;
  font-family: var(--font-body);
  font-size: 10px;
}

.article-aside {
  position: sticky;
  inset-block-start: 30px;
  align-self: start;
  display: grid;
}

.article-aside > a:not(.button) {
  display: grid;
  gap: 5px;
  padding-block: 18px;
  border-block-end: 1px solid var(--border);
}

.article-aside > a span {
  color: var(--accent-strong);
  font-size: 8px;
}

.article-aside > a strong {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.5;
}

.article-aside .button {
  margin-block-start: 24px;
}

.about-page-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  overflow: hidden;
  background: var(--primary);
  color: white;
}

.about-page-hero__content {
  padding: 80px clamp(30px, 7vw, 112px);
}

.about-page-hero__content .breadcrumb {
  color: #95a0a8;
}

.about-page-hero__content .eyebrow {
  color: #d2bd98;
}

.about-page-hero__content > p:not(.eyebrow) {
  max-width: 720px;
  color: #adb6bd;
  font-size: 13px;
  line-height: 2.1;
}

.about-page-hero__portrait {
  align-self: end;
  min-height: 680px;
  display: flex;
  align-items: end;
  justify-content: center;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.1);
}

.about-page-hero__portrait img {
  width: min(95%, 620px);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(60px, 9vw, 140px);
  padding: 110px clamp(28px, 7vw, 112px);
  background: var(--surface);
}

.about-story h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.25;
}

.about-story > div:last-child > p {
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 2.1;
}

.about-story blockquote {
  margin: 28px 0 16px;
  padding: 18px 22px;
  border-inline-start: 1px solid var(--accent);
  font-family: var(--font-display);
  font-size: 22px;
}

.about-story img {
  width: 190px;
}

.about-story > div:last-child > strong,
.about-story > div:last-child > span {
  display: block;
}

.about-story > div:last-child > span {
  color: var(--muted-foreground);
  font-size: 9px;
}

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

.values-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--background);
}

.values-grid article > span {
  margin-block-end: auto;
  color: var(--accent-strong);
  font-family: var(--font-display);
}

.values-grid h2 {
  margin-block-end: 10px;
  font-family: var(--font-display);
  font-size: 26px;
}

.values-grid p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 10px;
}

.contact-page {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
  background: var(--surface);
}

.contact-page__content {
  align-self: center;
  padding: 80px clamp(30px, 7vw, 112px);
}

.contact-page__content > p:not(.eyebrow) {
  color: var(--muted-foreground);
  font-size: 12px;
  line-height: 2;
}

.contact-page address {
  display: grid;
  margin-block: 34px;
  font-style: normal;
}

.contact-page address div {
  display: grid;
  gap: 2px;
  padding-block: 14px;
  border-block-end: 1px solid var(--border);
}

.contact-page address span {
  color: var(--muted-foreground);
  font-size: 9px;
}

.contact-page address strong,
.contact-page address a {
  font-size: 11px;
}

.contact-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-page__map iframe {
  width: 100%;
  height: 100%;
  min-height: 820px;
  display: block;
  border: 0;
  filter: grayscale(0.85) contrast(0.92);
}

.training-page {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(390px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: 90px clamp(28px, 7vw, 112px);
  background:
    linear-gradient(90deg, rgba(10, 17, 24, 0.97) 0 44%, rgba(244, 241, 235, 0.96) 44% 100%),
    url("/brand/achievements.jpg") center / cover no-repeat;
}

.training-page__intro {
  color: white;
}

.training-page__intro .breadcrumb {
  color: #9aa5ad;
}

.training-page__intro .eyebrow {
  color: #d2bd98;
}

.training-page__intro > p:not(.eyebrow) {
  color: #adb6bd;
  font-size: 12px;
  line-height: 2;
}

.training-page__intro ol {
  display: grid;
  gap: 1px;
  margin-block-start: 34px;
  padding: 0;
  background: rgba(255, 255, 255, 0.14);
  list-style: none;
}

.training-page__intro li {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px;
  background: rgba(16, 25, 35, 0.94);
}

.training-page__intro li span {
  color: #d2bd98;
  font-family: var(--font-display);
}

.training-page__intro li strong {
  font-size: 11px;
}

.training-page__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
}

.training-page__form h2,
.training-page__form .form-notice,
.training-page__form button {
  grid-column: 1 / -1;
}

.training-page__form h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
}

@media (max-width: 1180px) {
  :root {
    --sidebar-width: 268px;
  }

  .sidebar {
    padding-inline: 26px;
  }

  .hero {
    grid-template-columns: minmax(330px, 0.85fr) minmax(440px, 1.15fr);
  }

  .hero__content {
    padding-inline: 44px;
  }

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

  .service-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-block-start: 76px;
  }

  .sidebar {
    display: none;
  }

  .page {
    margin-right: 0;
    margin-left: 0;
  }

  .mobile-header {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 200;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 20px;
    background: rgba(16, 25, 35, 0.97);
    border-block-end: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-header > a img {
    width: 210px;
  }

  .menu-button {
    min-width: 88px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
  }

  .menu-button__label {
    font-size: 10px;
  }

  .menu-button__icon {
    width: 24px;
    display: grid;
    gap: 6px;
  }

  .menu-button__icon i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-button__icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button__icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset-block-start: 72px;
    inset-inline: 0;
    max-height: calc(100dvh - 72px);
    display: grid;
    padding: 24px;
    background: var(--primary);
    color: white;
    border-block-start: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 220ms ease, opacity 180ms ease, visibility 220ms;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-block-end: 1px solid rgba(255, 255, 255, 0.1);
    color: #d7dde1;
    font-size: 13px;
  }

  body.menu-open {
    overflow: hidden;
  }

  main {
    padding-block-start: 72px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__image {
    min-height: 54dvh;
    order: 2;
  }

  .hero__content {
    padding-block: 70px;
  }

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

  .about__portrait {
    min-height: 570px;
    order: 2;
  }

  .services,
  .practice,
  .consultation,
  .training {
    padding-block: 82px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  }

  .service-card__body {
    min-height: auto;
  }

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

  .results__grid div:nth-child(3) {
    border-inline-start: 0;
    border-block-start: 1px solid rgba(255, 255, 255, 0.18);
  }

  .results__grid div:nth-child(4) {
    border-block-start: 1px solid rgba(255, 255, 255, 0.18);
  }

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

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

  .service-hero {
    grid-template-columns: 1fr;
  }

  .service-hero__visual {
    min-height: 390px;
  }

  .service-details {
    grid-template-columns: 1fr;
  }

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

  .service-process li:nth-child(3) {
    border-inline-start: 0;
  }

  .booking-page {
    padding-block-start: 110px;
  }

  .booking-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .booking-intro aside {
    max-width: 420px;
  }

  .contact__map,
  .contact__map iframe {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .mobile-header {
    padding-inline: 16px;
  }

  .mobile-header > a img {
    width: 190px;
  }

  .menu-button {
    min-width: 52px;
  }

  .menu-button__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .hero__content {
    padding: 54px 22px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 60px);
  }

  .hero__lead {
    font-size: 13px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero__meta div {
    grid-template-columns: 70px 1fr;
    align-items: baseline;
  }

  .hero__image {
    min-height: 46dvh;
  }

  .services,
  .practice,
  .consultation,
  .training {
    padding: 68px 20px;
  }

  .section-header h2,
  .about h2,
  .consultation h2,
  .contact h2,
  .results h2 {
    font-size: 38px;
  }

  .service-card {
    display: block;
  }

  .service-card__body {
    min-height: 280px;
    padding: 24px;
  }

  .about__content {
    padding: 68px 22px;
  }

  .about__portrait {
    min-height: 450px;
  }

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

  .practice-item:nth-child(odd) {
    border-inline-end: 0;
  }

  .practice-item {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 12px;
    padding-inline: 10px;
  }

  .results {
    padding: 72px 20px;
  }

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

  .results__grid div + div,
  .results__grid div:nth-child(3) {
    border-inline-start: 0;
    border-block-start: 1px solid rgba(255, 255, 255, 0.18);
  }

  .consultation__form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .training__form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .field,
  .field--wide,
  .form-notice {
    grid-column: 1;
  }

  .contact__content {
    padding: 68px 20px;
  }

  .contact__map,
  .contact__map iframe {
    min-height: 340px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 22px;
    padding: 44px 20px 90px;
  }

  .service-hero__content {
    padding: 58px 20px;
  }

  .service-details,
  .service-process {
    padding: 68px 20px;
  }

  .service-process ol {
    grid-template-columns: 1fr;
  }

  .service-process li + li,
  .service-process li:nth-child(3) {
    border-inline-start: 0;
    border-block-start: 0;
  }

  .service-cta {
    min-height: 360px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 58px 20px;
  }

  .service-cta__actions {
    width: 100%;
    justify-content: start;
  }

  .booking-page {
    padding: 96px 16px 80px;
  }

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

  .stepper li {
    min-height: 62px;
    padding: 12px 16px;
  }

  .stepper li + li {
    border-inline-start: 0;
    border-block-start: 1px solid var(--border);
  }

  .service-options,
  .booking-fields {
    grid-template-columns: 1fr;
  }

  .multi-step-form {
    padding: 28px 16px;
  }

  .step-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .step-actions .button {
    width: 100%;
  }

  .booking-success {
    grid-template-columns: 1fr;
  }

  .admin-header {
    grid-template-columns: 1fr auto;
  }

  .admin-header img {
    display: none;
  }

  .admin-summary {
    grid-template-columns: 1fr;
  }

  .admin-section {
    padding: 20px 14px;
  }

  .submission-card summary {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .submission-card summary > b {
    grid-column: 2;
  }

  .submission-card__body dl {
    grid-template-columns: 1fr;
  }

  .submission-card__body dl > div.wide {
    grid-column: 1;
  }

  .whatsapp {
    left: 16px;
    inset-block-end: 16px;
  }
}

@media (max-width: 1180px) {
  .home-hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  }

  .home-hero__content {
    padding-inline: 44px;
  }

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

@media (max-width: 960px) {
  .home-hero,
  .home-about,
  .about-page-hero,
  .contact-page,
  .training-page {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__content {
    padding-block: 70px;
  }

  .home-hero__image {
    min-height: 54dvh;
  }

  .content-header,
  .home-results,
  .home-final-cta,
  .page-hero,
  .about-story {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .home-bento__card,
  .home-bento__card--2,
  .home-bento__card--3,
  .home-bento__card--4,
  .home-bento__card--5,
  .home-bento__card--6 {
    grid-column: span 1;
  }

  .home-bento__card--1 {
    grid-column: span 2;
    min-height: 400px;
  }

  .home-about__portrait,
  .about-page-hero__portrait {
    min-height: 560px;
    order: 2;
  }

  .home-results {
    padding-block: 76px;
  }

  .home-final-cta > div:last-child {
    justify-items: start;
  }

  .page-hero {
    min-height: 500px;
    align-items: end;
  }

  .page-hero > aside {
    width: fit-content;
  }

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

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

  .article-aside {
    position: static;
    border-block-start: 1px solid var(--border);
    padding-block-start: 30px;
  }

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

  .contact-page__map iframe {
    min-height: 440px;
  }

  .training-page {
    background:
      linear-gradient(180deg, rgba(10, 17, 24, 0.98) 0 43%, rgba(244, 241, 235, 0.98) 43% 100%),
      url("/brand/achievements.jpg") center / cover no-repeat;
  }
}

@media (max-width: 640px) {
  .home-hero__content {
    padding: 56px 20px;
  }

  .home-hero h1 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .home-hero__actions {
    align-items: stretch;
  }

  .home-hero__actions .button {
    width: 100%;
  }

  .home-hero dl {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-hero dl div {
    grid-template-columns: 72px 1fr;
    align-items: baseline;
  }

  .home-hero__image {
    min-height: 44dvh;
  }

  .home-services,
  .home-articles,
  .services-catalogue,
  .articles-library {
    padding: 68px 18px;
  }

  .home-bento,
  .home-article-grid,
  .articles-grid,
  .bento-services {
    grid-template-columns: 1fr;
  }

  .home-bento__card,
  .home-bento__card--1,
  .bento-service,
  .bento-service--wide {
    grid-column: span 1;
  }

  .home-bento__card--1 {
    min-height: 360px;
  }

  .home-about__content {
    padding: 68px 20px;
  }

  .home-about__portrait,
  .about-page-hero__portrait {
    min-height: 450px;
  }

  .home-results {
    padding: 68px 18px;
  }

  .home-results dl {
    grid-template-columns: 1fr;
  }

  .home-results dl div:nth-child(odd) {
    border-inline-end: 0;
  }

  .home-article--featured,
  .article-card--featured {
    min-height: 480px;
  }

  .home-final-cta,
  .page-hero {
    padding: 62px 18px;
  }

  .page-hero h1,
  .about-page-hero h1,
  .contact-page h1,
  .training-page h1 {
    font-size: 46px;
  }

  .page-hero > aside {
    min-width: 0;
  }

  .article-page__header {
    padding: 56px 20px;
  }

  .article-page__header h1 {
    font-size: 46px;
  }

  .article-page__layout {
    padding: 56px 20px 80px;
  }

  .article-body h2 {
    font-size: 27px;
  }

  .article-body p {
    font-size: 17px;
  }

  .about-page-hero__content,
  .contact-page__content {
    padding: 60px 20px;
  }

  .about-story {
    padding: 68px 20px;
  }

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

  .values-grid article {
    min-height: 230px;
  }

  .training-page {
    padding: 56px 18px;
    background:
      linear-gradient(180deg, rgba(10, 17, 24, 0.98) 0 45%, rgba(244, 241, 235, 0.98) 45% 100%),
      url("/brand/achievements.jpg") center / cover no-repeat;
  }

  .training-page__form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .training-page__form h2,
  .training-page__form .form-notice,
  .training-page__form button {
    grid-column: 1;
  }
}

.home-business {
  padding: 110px clamp(28px, 7vw, 112px);
  color: white;
  background:
    radial-gradient(circle at 13% 18%, rgba(167, 140, 98, 0.16), transparent 30%),
    #0d1720;
}

.home-business__header {
  max-width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin: 0 auto 56px;
}

.home-business__header .eyebrow {
  color: #d0b887;
}

.home-business__header h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.18;
}

.home-business__header > div:last-child {
  display: grid;
  gap: 18px;
}

.home-business__header > div:last-child p {
  margin: 0;
  color: #aab4bc;
  font-size: 12px;
  line-height: 2;
}

.home-business__header > div:last-child a {
  width: fit-content;
  color: #d5bd91;
  font-size: 11px;
  font-weight: 700;
}

.home-business__grid {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-block-start: 1px solid rgba(255, 255, 255, 0.16);
}

.home-business__grid > a {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border-block-end: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 180ms ease, transform 180ms ease;
}

.home-business__grid > a + a {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
}

.home-business__grid > a:hover {
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-4px);
}

.home-business__grid > a > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbaf80;
}

.home-business__grid > a > span .icon {
  width: 21px;
  height: 21px;
}

.home-business__grid h3 {
  margin: auto 0 16px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.35;
}

.home-business__grid p {
  color: #9ca7af;
  font-size: 11px;
  line-height: 2;
}

.home-business__grid strong {
  margin-block-start: 22px;
  color: #d5bd91;
  font-size: 10px;
}

.business-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  color: white;
  background:
    linear-gradient(112deg, rgba(10, 17, 24, 0.99) 0 58%, rgba(10, 17, 24, 0.68)),
    url("/brand/achievements.jpg") center / cover no-repeat;
}

.business-hero__content {
  align-self: center;
  padding: 96px clamp(34px, 7vw, 112px);
}

.business-hero .breadcrumb {
  color: #8f9aa3;
}

.business-hero .eyebrow {
  color: #d2bc94;
}

.business-hero h1 {
  max-width: 930px;
  margin-block-end: 28px;
  font-size: clamp(54px, 6vw, 88px);
}

.business-hero__content > p:not(.eyebrow) {
  max-width: 730px;
  margin-block-end: 34px;
  color: #b2bbc1;
  font-size: 14px;
  line-height: 2.1;
}

.business-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: white;
}

.button--outline-light:hover {
  border-color: #d2bc94;
  color: #d2bc94;
}

.business-hero__brief {
  align-self: end;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 52px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.18);
  border-block-start: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 21, 29, 0.72);
  backdrop-filter: blur(10px);
}

.business-hero__brief > span {
  margin-block-end: auto;
  color: #9b865f;
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.business-hero__brief strong {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.25;
}

.business-hero__brief p {
  max-width: 440px;
  margin: 20px 0 0;
  color: #aeb7bd;
  font-size: 11px;
  line-height: 2;
}

.business-context,
.sector-support,
.sector-documents {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 9vw, 140px);
  padding: 110px clamp(28px, 7vw, 112px);
}

.business-context {
  background: var(--surface);
}

.business-context h2,
.business-operating-model h2,
.sector-challenges h2,
.sector-support h2,
.sector-documents h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.25;
}

.business-context__copy {
  align-self: end;
  border-block-start: 1px solid var(--border);
}

.business-context__copy p {
  margin: 0;
  padding-block: 22px;
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 2.1;
}

.business-context__copy p + p {
  border-block-start: 1px solid var(--border);
}

.business-sectors {
  padding: 110px clamp(28px, 7vw, 112px);
  background: var(--background);
}

.business-sectors > * {
  max-width: var(--container);
  margin-inline: auto;
}

.business-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.business-card {
  grid-column: span 4;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--surface);
  transition: background 180ms ease, color 180ms ease;
}

.business-card--1,
.business-card--4 {
  grid-column: span 8;
}

.business-card--1 {
  color: white;
  background:
    linear-gradient(rgba(9, 17, 24, 0.82), rgba(9, 17, 24, 0.95)),
    url("/brand/achievements.jpg") center / cover no-repeat;
}

.business-card--4 {
  color: white;
  background: var(--primary-soft);
}

.business-card:hover {
  color: white;
  background: var(--accent-strong);
}

.business-card > span {
  color: var(--accent-strong);
}

.business-card--1 > span,
.business-card--4 > span,
.business-card:hover > span {
  color: #d9c39d;
  background: rgba(255, 255, 255, 0.14);
}

.business-card > div {
  margin-block-start: auto;
}

.business-card h2 {
  margin-block-end: 12px;
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.3;
}

.business-card p {
  max-width: 620px;
  color: var(--muted-foreground);
  font-size: 11px;
  line-height: 2;
}

.business-card--1 p,
.business-card--4 p,
.business-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.business-card > strong {
  margin-block-start: 24px;
  color: var(--accent-strong);
  font-size: 10px;
}

.business-card--1 > strong,
.business-card--4 > strong,
.business-card:hover > strong {
  color: #e1cca7;
}

.business-operating-model {
  padding: 110px clamp(28px, 7vw, 112px);
  color: white;
  background: #101923;
}

.business-operating-model > header,
.business-operating-model > div {
  max-width: var(--container);
  margin-inline: auto;
}

.business-operating-model .eyebrow {
  color: #d1bb92;
}

.business-operating-model > header {
  margin-block-end: 52px;
}

.business-operating-model > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block-start: 1px solid rgba(255, 255, 255, 0.16);
}

.business-operating-model article {
  min-height: 280px;
  padding: 28px;
  border-block-end: 1px solid rgba(255, 255, 255, 0.16);
}

.business-operating-model article + article {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
}

.business-operating-model article span {
  color: #9f875f;
  font-family: var(--font-display);
}

.business-operating-model h3 {
  margin: 86px 0 14px;
  font-family: var(--font-display);
  font-size: 28px;
}

.business-operating-model article p {
  color: #aab3ba;
  font-size: 11px;
  line-height: 2;
}

.sector-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  background: var(--surface);
}

.sector-hero__content {
  align-self: center;
  padding: 90px clamp(34px, 7vw, 112px);
}

.sector-hero h1 {
  margin-block-end: 26px;
  font-size: clamp(52px, 6vw, 84px);
}

.sector-hero__content > p:not(.eyebrow) {
  max-width: 760px;
  margin-block-end: 32px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 2.1;
}

.sector-hero__index {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  color: white;
  background:
    linear-gradient(rgba(11, 19, 27, 0.82), rgba(11, 19, 27, 0.95)),
    url("/brand/dammam.jpg") center / cover no-repeat;
}

.sector-hero__index small {
  color: #c4ab7f;
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: 0.18em;
}

.sector-hero__index strong {
  margin-block: 40px;
  color: rgba(255, 255, 255, 0.14);
  font-weight: 400;
}

.sector-hero__icon .icon {
  width: clamp(110px, 13vw, 170px);
  height: clamp(110px, 13vw, 170px);
  stroke-width: 0.9;
}

.sector-hero__index span {
  padding-block-start: 22px;
  border-block-start: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  font-size: 25px;
}

.sector-challenges {
  padding: 110px clamp(28px, 7vw, 112px);
  background: var(--background);
}

.sector-challenges > header,
.sector-challenges > div {
  max-width: var(--container);
  margin-inline: auto;
}

.sector-challenges > header {
  margin-block-end: 50px;
}

.sector-challenges > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block-start: 1px solid var(--border);
}

.sector-challenges article {
  min-height: 220px;
  padding: 26px;
  border-block-end: 1px solid var(--border);
}

.sector-challenges article + article {
  border-inline-start: 1px solid var(--border);
}

.sector-challenges article span {
  color: var(--accent-strong);
  font-family: var(--font-display);
}

.sector-challenges article h3 {
  margin: 82px 0 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
}

.sector-support {
  color: white;
  background: var(--primary);
}

.sector-support .eyebrow {
  color: #d1bb92;
}

.sector-support__heading > p:not(.eyebrow) {
  margin-block-start: 24px;
  color: #9eabb4;
  font-size: 11px;
  line-height: 2;
}

.sector-support ul {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
  border-block-start: 1px solid rgba(255, 255, 255, 0.18);
}

.sector-support li {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-block-end: 1px solid rgba(255, 255, 255, 0.18);
  color: #d7dde1;
  font-size: 12px;
}

.sector-support li span {
  color: #c4aa7c;
}

.sector-documents {
  background: var(--surface);
}

.sector-documents > div > p:not(.eyebrow) {
  margin-block-start: 24px;
  color: var(--muted-foreground);
  font-size: 12px;
  line-height: 2;
}

.sector-documents ol {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
  border-block-start: 1px solid var(--border);
}

.sector-documents li {
  min-height: 68px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 16px;
  border-block-end: 1px solid var(--border);
}

.sector-documents li span {
  color: var(--accent-strong);
  font-family: var(--font-display);
}

.sector-documents li strong {
  font-size: 12px;
}

@media (max-width: 1180px) {
  .home-business__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-business__grid > a:nth-child(3) {
    border-inline-start: 0;
  }

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

  .business-card,
  .business-card--1,
  .business-card--4 {
    grid-column: span 1;
  }
}

@media (max-width: 960px) {
  .home-business__header,
  .business-hero,
  .business-context,
  .sector-hero,
  .sector-support,
  .sector-documents {
    grid-template-columns: 1fr;
  }

  .business-hero__brief,
  .sector-hero__index {
    min-height: 390px;
  }

  .business-operating-model > div,
  .sector-challenges > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-operating-model article:nth-child(3),
  .sector-challenges article:nth-child(3) {
    border-inline-start: 0;
  }
}

@media (max-width: 640px) {
  .home-business,
  .business-context,
  .business-sectors,
  .business-operating-model,
  .sector-challenges,
  .sector-support,
  .sector-documents {
    padding: 68px 18px;
  }

  .home-business__header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-business__grid,
  .business-bento,
  .business-operating-model > div,
  .sector-challenges > div {
    grid-template-columns: 1fr;
  }

  .home-business__grid > a {
    min-height: 300px;
  }

  .home-business__grid > a + a,
  .business-operating-model article + article,
  .sector-challenges article + article {
    border-inline-start: 0;
  }

  .business-hero__content,
  .sector-hero__content {
    padding: 60px 20px;
  }

  .business-hero h1,
  .sector-hero h1 {
    font-size: 48px;
  }

  .business-hero__actions,
  .sector-hero .service-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .business-hero__actions .button,
  .sector-hero .button {
    width: 100%;
  }

  .business-hero__brief,
  .sector-hero__index {
    min-height: 330px;
    padding: 34px 22px;
  }

  .business-card {
    min-height: 330px;
  }

  .business-operating-model article,
  .sector-challenges article {
    min-height: 190px;
  }
}

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

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