@font-face {
  font-family: "Tajawal Local";
  src: url("../assets/fonts/tajawal-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal Local";
  src: url("../assets/fonts/tajawal-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #f5f2eb;
  --paper-deep: #e9e5db;
  --white: #fffdf8;
  --ink: #10283f;
  --navy: #102d4a;
  --navy-dark: #0a2035;
  --steel: #68849a;
  --steel-light: #dce6e9;
  --gold: #bd8c31;
  --gold-light: #e1c57d;
  --saudi: #006c35;
  --line: #d8d5ca;
  --muted: #67737a;
  --whatsapp: #25d366;
  --container: 1180px;
  --shadow: 0 18px 42px rgba(16, 40, 63, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Tajawal Local", "Tahoma", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--gold-light);
  color: var(--ink);
}

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

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

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

button {
  font: inherit;
}

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

.icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  fill: currentColor;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 100;
  padding: 8px 13px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 40;
  background: rgba(245, 242, 235, .96);
  border-block-end: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-bar {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d8d6ce;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -.035em;
}

.brand-copy small {
  margin-block-start: 5px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 500;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: .9rem;
  color: #3d4f5c;
}

.main-nav a,
.footer-links a {
  position: relative;
}

.main-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

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

.main-nav a.is-active::after {
  background: var(--saudi);
  transform: scaleX(1);
}

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

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: .84rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-contact .icon {
  color: var(--whatsapp);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  padding: 10px 19px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

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

.button-small {
  min-height: 39px;
  padding: 8px 14px;
  font-size: .78rem;
}

.button-large {
  min-height: 53px;
  padding: 13px 24px;
  font-size: .98rem;
}

.header-cta,
.button-gold {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-gold:hover,
.button-gold:focus-visible {
  color: var(--white);
  background: #a87922;
  border-color: #a87922;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 40px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-block-end: 6px solid var(--gold);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(225, 197, 125, .3);
}

.hero::before {
  width: 210px;
  height: 210px;
  inset-block-start: -112px;
  inset-inline-start: -54px;
  transform: rotate(45deg);
}

.hero::after {
  width: 120px;
  height: 120px;
  inset-block-end: -62px;
  inset-inline-end: 18%;
  transform: rotate(45deg);
}

.hero-grid {
  min-height: 625px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  padding-block: 68px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-block: 10px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 17px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .045em;
}

.eyebrow-light {
  color: var(--gold-light);
}

.eyebrow-mark {
  color: currentColor;
  font-family: "Arial", sans-serif;
  font-size: .7rem;
  letter-spacing: .09em;
  direction: ltr;
}

.saudi-emblem-inline {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--saudi);
  border: 1px solid rgba(0, 108, 53, .72);
  border-radius: 50%;
}

.saudi-emblem-inline svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.9rem, 5.8vw, 5.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.hero-lead {
  max-width: 540px;
  margin: 25px 0 0;
  color: #d9e2e4;
  font-size: 1.06rem;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-block-start: 29px;
}

.hero-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 625px;
  margin-block-start: 62px;
  border-block-start: 1px solid rgba(225, 197, 125, .47);
}

.hero-credentials div {
  min-height: 67px;
  padding: 15px 15px 0 13px;
  border-inline-start: 1px solid rgba(225, 197, 125, .38);
}

.hero-credentials div:first-child {
  border-inline-start: 0;
  padding-inline-start: 0;
}

.hero-credentials strong,
.hero-credentials span {
  display: block;
}

.hero-credentials strong {
  color: var(--gold-light);
  font-size: .82rem;
}

.hero-credentials span {
  margin-block-start: 2px;
  color: #b8c9cc;
  font-size: .71rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding-block: 6px 18px;
  padding-inline-start: 16px;
}

.hero-frame {
  position: relative;
  height: min(520px, 48vw);
  min-height: 390px;
  isolation: isolate;
}

.hero-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 15px auto -15px -15px;
  width: 100%;
  border: 1px solid var(--gold);
}

.hero-frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 10px solid rgba(16, 45, 74, .14);
  pointer-events: none;
}

.hero-slides {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--steel-light);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.image-label {
  position: absolute;
  z-index: 2;
  inset-block-start: 18px;
  inset-inline-start: 18px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
}

.image-label b {
  font-family: "Arial", sans-serif;
  font-size: .65rem;
  direction: ltr;
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  inset-block-end: 22px;
  inset-inline-start: -31px;
  display: grid;
  min-width: 156px;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--white);
  border-inline-start: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.stamp-line {
  margin-block-end: 4px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
}

.hero-stamp strong {
  font-size: .9rem;
  line-height: 1.45;
}

.hero-visual-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 15px 0 0;
  color: #b9cbd0;
  font-size: .75rem;
}

.hero-visual-note > span:first-child {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--saudi);
}

.hero-visual-note > span:last-child {
  width: auto;
  height: auto;
  background: transparent;
}

.section { 
  padding-block: 104px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 50px;
  margin-block-end: 55px;
}

.section-heading h2,
.process-heading h2,
.contact h2,
.about h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw, 3.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.055em;
}

.section-heading > p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

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

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(250px, .78fr);
  gap: clamp(42px, 7vw, 95px);
  align-items: start;
}

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

.service-item {
  display: grid;
  grid-template-columns: 40px 47px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  padding: 23px 0;
  border-block-end: 1px solid var(--line);
  transition: background-color .2s ease, padding-inline .2s ease;
}

.service-item:hover {
  padding-inline: 12px;
  background: rgba(255, 253, 248, .7);
}

.service-item-featured {
  border-inline-start: 4px solid var(--gold);
  padding-inline-start: 12px;
}

.service-number,
.process-number {
  padding-block-start: 6px;
  color: var(--gold);
  font-family: "Arial", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  direction: ltr;
}

.service-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.service-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-icon .fill-path {
  fill: var(--gold-light);
  stroke: var(--gold);
}

.service-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.45;
}

.service-item h3 small {
  color: var(--gold);
  font-size: .73em;
  font-weight: 700;
}

.service-item p {
  max-width: 480px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.75;
}

.service-aside {
  position: sticky;
  inset-block-start: 115px;
}

.aside-photo {
  position: relative;
  overflow: visible;
  isolation: isolate;
  aspect-ratio: .82;
  background: var(--steel-light);
  border: 1px solid #d1d7d4;
}

.aside-photo::before {
  content: "";
  position: absolute;
  inset: 13px -13px -13px 13px;
  z-index: -1;
  border: 1px solid var(--gold);
}

.aside-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aside-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  margin-block-start: 17px;
  padding-block-start: 15px;
  border-block-start: 1px solid var(--line);
}

.caption-mark {
  color: var(--gold);
  font-family: "Arial", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}

.aside-caption p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.about {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(50px, 9vw, 128px);
}

.about-copy {
  position: relative;
}

.about h2,
.contact h2 {
  color: var(--white);
}

.about-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 19px 0 0;
  color: #c2d1d4;
  font-size: .98rem;
  line-height: 1.95;
}

.about-copy .about-lead {
  margin-block-start: 26px;
  color: var(--white);
  font-size: 1.08rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-block-start: 44px;
  border-block: 1px solid rgba(225, 197, 125, .48);
}

.about-points div {
  min-height: 91px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding-inline: 15px;
  border-inline-start: 1px solid rgba(225, 197, 125, .35);
}

.about-points div:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}

.about-points strong {
  color: var(--gold-light);
  font-family: "Arial", sans-serif;
  font-size: .72rem;
  direction: ltr;
}

.about-points span {
  color: #dae3e3;
  font-size: .79rem;
  line-height: 1.45;
}

.about-images {
  position: relative;
  min-height: 535px;
}

.about-image {
  position: absolute;
  overflow: hidden;
  background: var(--steel);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-main {
  inset: 0 36px 52px 0;
  border: 9px solid var(--white);
}

.about-image-small {
  inset: auto auto 0 0;
  width: 43%;
  height: 235px;
  border: 8px solid var(--navy);
  outline: 1px solid var(--gold);
}

.about-image-note {
  position: absolute;
  inset-block-start: 27px;
  inset-inline-start: -23px;
  display: grid;
  min-width: 145px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--gold-light);
  transform: rotate(-3deg);
}

.about-image-note span {
  font-size: .67rem;
  font-weight: 700;
}

.about-image-note strong {
  font-size: .97rem;
  line-height: 1.4;
}

.process {
  background: var(--paper-deep);
}

.process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-block-end: 46px;
}

.process-heading h2 {
  max-width: 9ch;
  margin-inline-start: auto;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block-start: 1px solid #c9c5b9;
}

.process-step {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  min-height: 205px;
  padding: 25px 25px 0;
  border-inline-start: 1px solid #c9c5b9;
}

.process-step:first-child {
  border-inline-start: 0;
  padding-inline-start: 0;
}

.process-step:last-child {
  padding-inline-end: 0;
}

.process-number {
  font-size: .95rem;
}

.process-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 800;
}

.process-step p {
  max-width: 250px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
}

.works {
  background: var(--paper);
}

.works-heading {
  margin-block-end: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 12px;
}

.gallery-card {
  position: relative;
  grid-column: span 3;
  grid-row: span 2;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--steel-light);
}

.gallery-card-large {
  grid-column: span 5;
  grid-row: span 4;
}

.gallery-card-wide {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-card-truck {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 253, 248, .28);
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card figcaption {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 2;
  display: grid;
  gap: 1px;
  padding: 16px 17px 14px;
  color: var(--white);
  background: rgba(16, 45, 74, .91);
  border-block-start: 3px solid var(--gold);
}

.gallery-card figcaption span {
  color: var(--gold-light);
  font-family: "Arial", sans-serif;
  font-size: .63rem;
  font-weight: 700;
  direction: ltr;
}

.gallery-card figcaption strong {
  font-size: .96rem;
  line-height: 1.35;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
  border-block-start: 1px solid rgba(225, 197, 125, .32);
}

.contact::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  inset-block-end: -205px;
  inset-inline-end: 12%;
  border: 1px solid rgba(225, 197, 125, .22);
  transform: rotate(45deg);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  align-items: start;
  gap: clamp(50px, 11vw, 150px);
}

.contact h2 {
  max-width: 11ch;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 530px;
  margin: 23px 0 0;
  color: #c6d4d7;
  font-size: 1rem;
  line-height: 1.95;
}

.contact-intro .button {
  margin-block-start: 30px;
}

.contact-form-panel {
  margin-block-start: 15px;
  padding: 29px 30px 24px;
  color: var(--ink);
  background: var(--paper);
  border-block-start: 5px solid var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.form-panel-heading {
  padding-block-end: 18px;
  border-block-end: 1px solid var(--line);
}

.form-overline {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
}

.form-panel-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.48rem;
  font-weight: 800;
  line-height: 1.35;
}

.form-panel-heading > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.7;
}

.quote-form {
  margin-block-start: 20px;
}

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

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

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

.form-field > span {
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9cec8;
  border-radius: 2px;
  font: inherit;
  font-size: .83rem;
  line-height: 1.5;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #929b9e;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189, 140, 49, .13);
}

.form-submit {
  width: 100%;
  margin-block-start: 19px;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .68rem;
  text-align: center;
}

.site-footer {
  padding-block: 48px 22px;
  color: #c5d0d2;
  background: var(--navy-dark);
  border-block-start: 1px solid rgba(255, 255, 255, .1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr .9fr;
  gap: 45px;
  padding-block-end: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 94px;
  height: 94px;
  object-fit: contain;
  background: var(--white);
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-brand p {
  margin: 5px 0 0;
  color: #aebfc3;
  font-size: .82rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 9px;
  color: var(--gold-light);
  font-size: .84rem;
  font-weight: 700;
}

.footer-links a,
.footer-contact a {
  color: #d6dede;
  font-size: .84rem;
}

.footer-contact a {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
}

.footer-contact span {
  color: #aebfc3;
  font-size: .8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block-start: 18px;
  color: #8ea2a7;
  border-block-start: 1px solid rgba(255, 255, 255, .1);
  font-size: .7rem;
}

.footer-bottom b {
  color: var(--saudi);
}

.floating-whatsapp {
  position: fixed;
  inset-block-end: 20px;
  inset-inline-start: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 11px 15px;
  color: #062414;
  background: var(--whatsapp);
  border: 2px solid rgba(255, 255, 255, .86);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
  font-size: .84rem;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease;
}

.floating-whatsapp .icon {
  width: 22px;
  height: 22px;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #46df7e;
  transform: translateY(-3px);
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .header-bar {
    gap: 17px;
  }

  .main-nav {
    gap: 17px;
  }

  .header-contact {
    display: none;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 5.5vw, 4.6rem);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-bar {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .header-tools {
    justify-content: end;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav {
    display: grid;
    gap: 0;
    padding: 6px 20px 17px;
    background: var(--paper);
    border-block-start: 1px solid var(--line);
  }

  .mobile-nav a {
    padding: 12px 0;
    border-block-end: 1px solid var(--line);
    color: var(--ink);
    font-size: .95rem;
  }

  .mobile-nav a:last-child {
    border-block-end: 0;
  }

  .mobile-nav a.is-active {
    color: var(--saudi);
    font-weight: 700;
  }

  .mobile-nav-cta {
    margin-block-start: 10px;
    padding: 12px 14px !important;
    color: var(--ink) !important;
    background: var(--gold);
    border-block-end: 0 !important;
    text-align: center;
    font-weight: 700;
  }

  .hero-grid,
  .services-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    padding-block: 64px 75px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    padding-inline: 12px 0;
  }

  .hero-frame {
    height: min(520px, 74vw);
    min-height: 340px;
  }

  .hero-credentials {
    margin-block-start: 45px;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-block-end: 38px;
  }

  .services-layout {
    gap: 48px;
  }

  .service-aside {
    position: static;
    max-width: 470px;
  }

  .aside-photo {
    aspect-ratio: 1.35;
  }

  .about-grid {
    gap: 58px;
  }

  .about-images {
    min-height: 470px;
    max-width: 620px;
  }

  .process-heading {
    display: block;
  }

  .process-heading h2 {
    margin-inline-start: 0;
    margin-block-start: 12px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

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

  .brand-mark {
    width: 47px;
    height: 47px;
  }

  .brand-copy strong {
    font-size: .98rem;
  }

  .brand-copy small {
    font-size: .64rem;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    padding-inline: 16px;
  }

  .hero-grid {
    padding-block: 50px 62px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }

  .hero-lead {
    margin-block-start: 20px;
    font-size: .96rem;
  }

  .hero-actions {
    margin-block-start: 24px;
  }

  .button-large {
    width: 100%;
  }

  .hero-credentials {
    grid-template-columns: 1fr;
    margin-block-start: 42px;
  }

  .hero-credentials div,
  .hero-credentials div:first-child {
    min-height: 0;
    padding: 11px 0;
    border-block-end: 1px solid rgba(225, 197, 125, .26);
    border-inline-start: 0;
  }

  .hero-credentials div:last-child {
    border-block-end: 0;
  }

  .hero-frame {
    height: 310px;
    min-height: 0;
  }

  .hero-frame::before {
    inset: 10px auto -10px -10px;
  }

  .hero-frame::after {
    border-width: 6px;
  }

  .hero-stamp {
    inset-block-end: 13px;
    inset-inline-start: -14px;
    min-width: 130px;
    padding: 11px 13px;
  }

  .hero-stamp strong {
    font-size: .77rem;
  }

  .image-label {
    inset-block-start: 12px;
    inset-inline-start: 12px;
    font-size: .65rem;
  }

  .section {
    padding-block: 67px;
  }

  .section-heading h2,
  .process-heading h2,
  .contact h2,
  .about h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .service-item {
    grid-template-columns: 31px 42px minmax(0, 1fr);
    gap: 10px;
    padding-block: 19px;
  }

  .service-item:hover {
    padding-inline: 0;
    background: transparent;
  }

  .service-item-featured {
    padding-inline-start: 9px;
  }

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

  .service-icon svg {
    width: 26px;
    height: 26px;
  }

  .service-item h3 {
    font-size: 1rem;
  }

  .service-item p {
    font-size: .8rem;
  }

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

  .about-points div,
  .about-points div:first-child {
    min-height: 0;
    padding: 12px 0;
    border-block-end: 1px solid rgba(225, 197, 125, .3);
    border-inline-start: 0;
  }

  .about-points div:last-child {
    border-block-end: 0;
  }

  .about-images {
    min-height: 360px;
  }

  .about-image-main {
    inset: 0 20px 40px 0;
    border-width: 6px;
  }

  .about-image-small {
    width: 47%;
    height: 165px;
    border-width: 5px;
  }

  .about-image-note {
    inset-block-start: 14px;
    inset-inline-start: -11px;
    min-width: 112px;
    padding: 9px 11px;
  }

  .about-image-note strong {
    font-size: .8rem;
  }

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

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    min-height: 0;
    padding: 20px 0;
    border-block-end: 1px solid #c9c5b9;
    border-inline-start: 0;
  }

  .process-step:last-child {
    border-block-end: 0;
  }

  .process-step h3 {
    font-size: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 142px;
    gap: 8px;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide,
  .gallery-card-truck {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-card-large,
  .gallery-card-wide {
    grid-column: 1 / -1;
    grid-row: span 3;
  }

  .gallery-card figcaption {
    padding: 10px 11px 9px;
    border-block-start-width: 2px;
  }

  .gallery-card figcaption strong {
    font-size: .79rem;
  }

  .gallery-card figcaption span {
    font-size: .55rem;
  }

  .contact-grid {
    gap: 45px;
  }

  .contact-form-panel {
    padding: 23px 18px 19px;
  }

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

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 5px;
  }

  .floating-whatsapp {
    inset-block-end: 13px;
    inset-inline-start: 13px;
    min-height: 47px;
    padding: 10px 13px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
