:root {
  --red: #d51f2a;
  --red-dark: #a8131d;
  --ink: #16171a;
  --charcoal: #2f3136;
  --steel: #5f6368;
  --line: #d9dee4;
  --paper: #f7f8f8;
  --white: #ffffff;
  --teal: #11656e;
  --gold: #c19445;
  --shadow: 0 18px 44px rgba(8, 15, 22, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 14, 17, 0.86), rgba(12, 14, 17, 0.24));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 26px rgba(10, 18, 28, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 4px;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  max-width: 390px;
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  color: currentColor;
  opacity: 0.76;
  font-size: 12px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.primary-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: currentColor;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a:hover {
  background: rgba(213, 31, 42, 0.12);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
  color: currentColor;
}

.site-header.is-scrolled .nav-toggle,
.site-header.solid .nav-toggle {
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-stack {
  position: relative;
  background: var(--ink);
}

.parallax-panel {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: grid;
  align-items: end;
  padding: 110px clamp(22px, 6vw, 92px) 72px;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(12, 14, 17, 0.88), rgba(12, 14, 17, 0.45) 48%, rgba(12, 14, 17, 0.14)),
    var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.panel-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.panel-representation {
  background: var(--ink);
}

.panel-representation::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(12, 14, 17, 0.86), rgba(12, 14, 17, 0.42) 48%, rgba(12, 14, 17, 0.06));
}

.panel-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  transform: translateY(var(--parallax-offset, 0px));
}

.panel-copy.compact {
  width: min(640px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.dark,
.section-kicker {
  color: var(--red);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: 58px;
}

.panel-copy h2 {
  max-width: 720px;
  font-size: 44px;
}

.panel-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

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

.btn.primary:hover {
  background: var(--red-dark);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
}

.btn.outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.section {
  padding: 84px clamp(22px, 6vw, 92px);
}

.split,
.contact-grid,
.media-copy {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-section h2,
.representation-section h2,
.section-heading h2,
.copy-pane h2,
.contact-card h2,
.legal-hero h1 {
  font-size: 40px;
}

.intro-section p,
.representation-section p,
.copy-pane p,
.contact-card p,
.legal-content p {
  color: var(--steel);
  font-size: 17px;
}

.representation-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    url("company-representation-abudhabi.jpg?v=20260618-2");
  background-size: cover;
  background-position: center right;
}

.representation-media {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(217, 222, 228, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.representation-media img {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
  object-position: center;
}

.capability-band,
.process-section {
  background: var(--paper);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 32px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--steel);
  font-size: 17px;
}

.why-section {
  background: var(--white);
}

.capability-grid,
.service-row,
.timeline {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.capability-grid article,
.service-row article,
.timeline article,
.contact-card,
.legal-content,
.cookiebot-declaration {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(18, 27, 39, 0.06);
}

.capability-grid article,
.service-row article,
.timeline article {
  padding: 24px;
}

.capability-grid article.priority-activity {
  border-top: 4px solid var(--red);
  background: linear-gradient(180deg, #ffffff, #fff6f6);
}

.capability-grid span,
.timeline span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--charcoal);
  font-weight: 800;
}

.capability-grid h3,
.service-row h3,
.timeline h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.capability-grid p,
.service-row p,
.timeline p {
  margin: 0;
  color: var(--steel);
}

.aviation-section {
  background: var(--white);
}

.media-copy {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
}

.image-pane {
  min-height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 26, 35, 0.05), rgba(18, 26, 35, 0.25)),
    url("https://images.unsplash.com/photo-1556388158-158ea5ccacbd?auto=format&fit=crop&w=1400&q=82");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.copy-pane {
  align-self: center;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 30px;
  color: var(--charcoal);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 16px;
  height: 9px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

.security-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88)),
    url("https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&w=1600&q=82");
  background-size: cover;
  background-position: center;
}

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

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

.timeline article {
  border-top: 4px solid var(--red);
}

.contact-section {
  background: var(--ink);
}

.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.contact-card {
  padding: 34px;
}

.contact-card h2 {
  margin-bottom: 14px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.contact-details article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-details h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.contact-details p {
  margin: 8px 0;
  font-size: 15px;
}

.contact-details a {
  color: var(--red-dark);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-details a:hover {
  text-decoration: underline;
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe4ea;
  box-shadow: var(--shadow);
}

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

.linkedin-plugin {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.linkedin-plugin p {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(22px, 6vw, 92px);
  background: #111215;
  color: var(--white);
}

.site-footer > div,
.site-footer nav,
.linkedin-footer-badge {
  flex: 1 1 260px;
}

.site-footer img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  padding: 3px;
  border-radius: 8px;
  background: var(--white);
}

.site-footer p {
  margin: 12px 0 0;
  font-weight: 760;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer a,
.site-footer button {
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: 0;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--white);
}

.linkedin-footer-badge {
  max-width: 380px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.linkedin-badge-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--white);
  background: #0a66c2;
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
}

.linkedin-badge-copy {
  min-width: 0;
}

.linkedin-badge-copy span,
.linkedin-badge-copy strong,
.linkedin-badge-copy a {
  display: block;
}

.linkedin-badge-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.linkedin-badge-copy a {
  margin-top: 3px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.linkedin-badge-copy strong {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.linkedin-plugin-slot {
  grid-column: 1 / -1;
  min-height: 28px;
}

.policy-page {
  background: var(--paper);
}

.legal-layout {
  padding-top: 78px;
}

.legal-hero {
  padding: 82px clamp(22px, 6vw, 92px) 48px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 17, 21, 0.92), rgba(15, 17, 21, 0.6)),
    url("https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.legal-hero h1,
.legal-hero p {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.legal-hero p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.legal-content {
  width: min(900px, calc(100% - 44px));
  margin: -28px auto 72px;
  padding: 34px;
}

.legal-content h2 {
  margin: 30px 0 10px;
  font-size: 22px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.cookiebot-declaration {
  min-height: 120px;
  margin: 18px 0 6px;
  padding: 18px;
}

.cookie-fallback {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(620px, calc(100% - 36px));
  display: none;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(8, 15, 22, 0.2);
}

.cookie-fallback.is-visible {
  display: grid;
}

.cookie-fallback strong {
  display: block;
  margin-bottom: 5px;
}

.cookie-fallback p {
  margin: 0;
  color: var(--steel);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 18px;
    width: min(320px, calc(100vw - 36px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .primary-nav.visible,
  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav.visible {
    position: static;
    width: auto;
    flex-direction: row;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .split,
  .contact-grid,
  .media-copy {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .service-row,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .parallax-panel {
    background-attachment: scroll;
  }

  h1 {
    font-size: 46px;
  }

  .panel-copy h2,
  .intro-section h2,
  .representation-section h2,
  .section-heading h2,
  .copy-pane h2,
  .contact-card h2 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    max-width: 210px;
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .parallax-panel {
    min-height: 74vh;
    padding: 104px 20px 48px;
  }

  h1 {
    font-size: 36px;
  }

  .panel-copy h2,
  .intro-section h2,
  .representation-section h2,
  .section-heading h2,
  .copy-pane h2,
  .contact-card h2,
  .legal-hero h1 {
    font-size: 29px;
  }

  .panel-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .section {
    padding: 58px 20px;
  }

  .capability-grid,
  .service-row,
  .timeline {
    grid-template-columns: 1fr;
  }

  .image-pane,
  .map-card,
  .map-card iframe {
    min-height: 360px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .cookie-fallback {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}
