/* ============================================================
   ROYAL FITOUT — Stylesheet
   Blueprint Editorial system
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Bodoni Display";
  src: url("../fonts/Bodoni-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pangea Text";
  src: url("../fonts/PangeaText-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #231F20;
  --ink-soft: #3a3536;
  --paper: #F4EDE7;
  --paper-deep: #E9DFD3;
  --paper-deeper: #dfd2c2;
  --concrete: #8f887f;
  --concrete-on-dark: #9a938c;
  --brass: var(--ink);
  --brass-bright: var(--ink);
  --line-on-paper: rgba(35, 31, 32, 0.14);
  --line-on-dark: rgba(244, 237, 231, 0.16);

  --font-display: "Bodoni Display", Georgia, "Times New Roman", serif;
  --font-body: "Pangea Text", "Helvetica Neue", Arial, sans-serif;

  --container: 1360px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.16, .84, .44, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* Dark context overrides to swap accent color to light paper tint */
.section--dark,
.hero,
.cta-section,
.mobile-nav {
  --brass: var(--paper);
  --brass-bright: var(--paper);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

svg {
  display: block;
}

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

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

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

/* ---------- Utility ---------- */
.container,
.wrap {
  max-width: var(--container) !important;
  margin: 0 auto;
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
}

.g-px {
  --bs-gutter-x: 1px;
  --bs-gutter-y: 1px;
}

.section {
  position: relative;
  padding: clamp(72px, 11vw, 160px) 0;
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}

.experience-bg {
  background-image: linear-gradient(rgba(35, 31, 32, 0.82), rgba(35, 31, 32, 0.82)), url("../images/experience_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(14px);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.headline {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.headline--xl {
  font-size: clamp(40px, 6vw, 84px);
}

.headline--lg {
  font-size: clamp(32px, 4.4vw, 58px);
}

.headline--md {
  font-size: clamp(26px, 3vw, 38px);
}

.lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  max-width: 46ch;
  font-weight: 300;
}

.cta-inner p.lede {
  color: var(--paper);
}

.section--dark .lede {
  color: var(--paper);
  opacity: .78;
}

.rf-divider {
  width: 1px;
  background: var(--line-on-paper);
  align-self: stretch;
}

.section--dark .rf-divider {
  background: var(--line-on-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-body);
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform .45s var(--ease);
  z-index: 0;
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
  transition: color .45s var(--ease), stroke .45s var(--ease);
}

.btn:hover {
  color: var(--paper);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:hover svg {
  stroke: var(--paper);
}

.btn--solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn--solid::before {
  background: var(--brass);
}

.btn--solid:hover {
  color: var(--paper);
  border-color: var(--paper);
}

.btn--solid:hover svg {
  stroke: var(--ink);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 11.5px;
  gap: 8px;
}

/* On dark backgrounds (hero, CTA section) ink-on-ink is invisible: use brass fill */
.hero .btn--solid,
.cta-section .btn--solid {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}

.hero .btn--solid::before,
.cta-section .btn--solid::before {
  background: var(--paper);
}

.hero .btn--solid:hover,
.cta-section .btn--solid:hover {
  color: var(--ink);
  border-color: var(--paper);
}

.btn--ghost-light {
  border-color: rgba(244, 237, 231, 0.45);
  color: var(--paper);
}

.btn--ghost-light::before {
  background: var(--paper);
}

.btn--ghost-light:hover {
  color: var(--ink);
}

.btn--ghost-light:hover svg {
  stroke: var(--ink);
}

.plate-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--brass);
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1.is-visible {
  transition-delay: .08s;
}

.reveal-delay-2.is-visible {
  transition-delay: .16s;
}

.reveal-delay-3.is-visible {
  transition-delay: .24s;
}

.reveal-delay-4.is-visible {
  transition-delay: .32s;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: background .5s var(--ease), padding .4s var(--ease), border-color .5s var(--ease), box-shadow .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header .container,
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-scrolled {
  background: rgba(244, 237, 231, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: var(--line-on-paper);
  box-shadow: 0 10px 30px -20px rgba(35, 31, 32, 0.4);
}

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

.brand img {
  height: 80px;
  width: auto;
  transition: filter .4s ease, opacity .4s ease, height .4s var(--ease);
}

.site-header.is-scrolled .brand img {
  height: 44px;
}

.brand .brand-dark {
  display: block;
}

.brand .brand-light {
  display: none;
}

.site-header.is-scrolled .brand-dark {
  display: block;
}

.site-header.is-scrolled .brand-light {
  display: none;
}

.site-header:not(.is-scrolled) .brand-dark {
  display: none;
}

.site-header:not(.is-scrolled) .brand-light {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.main-nav a {
  padding: 10px 11px;
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  transition: color .4s ease;
  white-space: nowrap;
}

.site-header.is-scrolled .main-nav a {
  color: var(--ink);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--paper);
  transition: color .4s ease;
}

.site-header.is-scrolled .lang-switch {
  color: var(--ink);
}

.lang-switch button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  opacity: .55;
  padding: 2px;
  font-weight: 600;
}

.lang-switch button.is-active {
  opacity: 1;
  border-bottom: 1px solid var(--brass);
}

.lang-switch .sep {
  opacity: .4;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 26px;
  height: 1px;
  background: var(--paper);
  transition: background .4s ease, transform .35s ease, opacity .35s ease;
}

.site-header.is-scrolled .hamburger span {
  background: var(--ink);
}

/* mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--gutter);
  transform: translateX(100%);
  transition: transform .55s var(--ease);
}

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

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 40px);
  text-transform: uppercase;
  color: var(--paper);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-on-dark);
}

.mobile-nav .mobile-close {
  position: absolute;
  top: 26px;
  right: var(--gutter);
  background: none;
  border: none;
  color: var(--paper);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav .mobile-foot {
  margin-top: 34px;
  color: var(--paper);
  opacity: .7;
  font-size: 13px;
  letter-spacing: .08em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  background: var(--ink);
  overflow: hidden;
}

.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(80px, 10vw, 120px);
  padding-bottom: clamp(140px, 15vw, 180px);
}

.hero-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(20, 20, 20, 0.92) 10%, rgb(20 20 20 / 47%) 55%, rgb(20 20 20 / 50%) 100%), linear-gradient(180deg, rgba(20, 20, 20, 0.6) 0%, rgba(20, 20, 20, 0.3) 30%, rgba(20, 20, 20, 0.75) 100%);
}

.hero-swiper .hero-content {
  padding-bottom: 0;
}

.hero-blueprint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-blueprint svg {
  width: 100%;
  height: 100%;
}

.hero-blueprint .bp-line {
  fill: none;
  stroke: rgba(244, 237, 231, 0.16);
  stroke-width: 1;
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: draw 3.2s var(--ease) forwards;
}

.hero-blueprint .bp-line.b2 {
  animation-delay: .15s;
  stroke: rgba(169, 129, 47, 0.35);
}

.hero-blueprint .bp-line.b3 {
  animation-delay: .3s;
}

.hero-blueprint .bp-dot {
  fill: var(--brass);
  opacity: 0;
  animation: fadein 1s ease forwards;
  animation-delay: 2.6s;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadein {
  to {
    opacity: .8;
  }
}


.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 8vw, 96px);
}

.hero-content .wrap {
  width: 100%;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--paper);
  opacity: 0;
  font-size: 12.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-tag .rf-mark {
  width: 1px;
  height: 16px;
  background: var(--brass);
}

.hero-title {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: clamp(34px, 6.4vw, 88px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  overflow: hidden;
}

.hero-title .line {
  overflow: hidden;
  white-space: nowrap;
}

.hero-title span {
  display: block;
  transform: translateY(110%);
  animation: riseUp 1.1s var(--ease) forwards;
}

.hero-title .line:nth-child(2) span {
  animation-delay: .12s;
}

@keyframes riseUp {
  to {
    transform: translateY(0);
  }
}

.hero-sub-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-end;
  margin-top: 40px;
}

.hero-support {
  max-width: 460px;
  color: var(--paper);
  opacity: 0;
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  font-weight: 500;
  line-height: 1.7;
}

.hero-support b {
  font-weight: 500;
  color: var(--brass-bright);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-fade-in {
  animation: fadeUp 1s var(--ease) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  border-top: 1px solid rgba(244, 237, 231, 0.2);
  background: rgba(35, 31, 32, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stat {
  padding: 22px var(--gutter) 0 0;
  border-left: 1px solid rgba(244, 237, 231, 0.18);
  padding-left: 26px;
  padding-bottom: 15px;
}

.hero-stat:first-child {
  border-left: none;
  padding-left: 0;
}

.hero-stat .num {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: clamp(24px, 3vw, 38px);
}

.hero-stat .num .brass {
  color: var(--brass-bright);
}

.hero-stat .lbl {
  color: var(--paper);
  opacity: .6;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: 6px;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  opacity: .6;
}

.scroll-cue .line {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--brass), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--paper);
  animation: cue 2.2s ease-in-out infinite;
}

@keyframes cue {
  0% {
    top: -100%;
  }

  60% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

.scroll-cue span {
  font-size: 10.5px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

/* ============================================================
   INTRO / WHO WE ARE
   ============================================================ */
.intro-visual {
  position: relative;
  aspect-ratio: 4/5;
}

.intro-visual svg {
  width: 100%;
  height: 100%;
}

.intro-visual-frame {
  position: absolute;
  inset: -14px;
  border: 1px solid var(--line-on-paper);
  pointer-events: none;
}

.intro-visual .corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--brass);
}

.intro-visual .corner.tl {
  top: -14px;
  left: -14px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.intro-visual .corner.br {
  bottom: -14px;
  right: -14px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.intro-copy .headline {
  margin-bottom: 22px;
}

.intro-copy p {
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.intro-copy .btn {
  margin-top: 20px;
}

.stat-strip {
  margin-top: 56px;
  border-top: 1px solid var(--line-on-paper);
  padding-top: 30px;
}

.stat-strip .stat {
  border-left: 1px solid var(--line-on-paper);
  padding-left: 22px;
}

.stat-strip .stat:first-child {
  border-left: none;
  padding-left: 0;
}

.stat-strip .num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
}

.stat-strip .lbl {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-top: 6px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.section-head .lede {
  padding-bottom: 4px;
}

.services-grid {
  background: var(--line-on-paper);
  border: 1px solid var(--line-on-paper);
  margin-left: 0;
  margin-right: 0;
}

.service-card {
  background: var(--paper);
  padding: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .45s var(--ease);
}

.service-card:hover {
  background: var(--ink);
  color: var(--paper);
}

.service-card:hover .service-index {
  color: var(--brass-bright);
}

.service-card:hover .service-icon svg * {
  stroke: var(--paper);
}

.service-card:hover .service-link {
  color: var(--brass-bright);
}

.service-index {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--brass);
  letter-spacing: .1em;
  transition: color .4s ease;
}

.service-icon {
  margin: 26px 0 20px;
  width: 42px;
  height: 42px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-icon svg * {
  transition: stroke .4s ease;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--concrete);
  flex-grow: 1;
}

.section--paper .service-card:hover p {
  color: rgba(244, 237, 231, 0.72);
}

.service-link {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s ease, color .4s ease;
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform .3s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ============================================================
   PROJECTS
   ============================================================ */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 4px;
  margin-bottom: 46px;
  padding-bottom: 15px;
}

.filter-btn {
  background: none;
  border: 1px solid transparent;
  padding: 9px 18px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--concrete);
  transition: color .3s ease, border-color .3s ease;
}

.filter-btn:hover {
  color: var(--ink);
}

.filter-btn.is-active {
  color: var(--ink);
  border-color: var(--ink);
}

.project-card {
  /* width: calc(100% - 10px); */
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
}

.project-wrapper.is-hidden {
  display: none !important;
}

.project-wrapper {
  padding: 0 !important;
  margin-top: 0;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(35, 31, 32, 0.65) 0%, rgba(35, 31, 32, 0.05) 45%, rgba(35, 31, 32, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: var(--paper);
}

.project-plate {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--paper-deep);
  margin-bottom: 10px;
}

.project-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 23px);
  text-transform: uppercase;
}

.project-overlay .meta {
  font-size: 12px;
  letter-spacing: .06em;
  opacity: .7;
  margin-top: 6px;
}

.project-view {
  margin-top: 16px;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}

.project-view svg {
  width: 14px;
  height: 14px;
}

.project-card:hover .project-view {
  opacity: 1;
  transform: translateY(0);
}

.projects-foot {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  background: var(--line-on-dark);
  margin-left: 0;
  margin-right: 0;
}

.industry-card {
  background: var(--ink);
  padding: 34px 22px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.industry-card .ind-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
  z-index: 0;
  transition: opacity .5s ease, transform .8s ease;
}

.industry-card:hover .ind-bg {
  opacity: .85;
  transform: scale(1.08);
}

.ind-icon {
  margin-bottom: 14px;
}

.ind-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  opacity: 0.9;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(20, 16, 17, .97) 0%, rgba(20, 16, 17, .7) 50%, rgba(20, 16, 17, .3) 100%);
}

.industry-card>* {
  position: relative;
  z-index: 2;
}

.industry-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--brass-bright);
  margin-bottom: 60px;
}

.industry-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.2;
}

.industry-card p {
  font-size: 13px;
  color: rgba(244, 237, 231, 0.65);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-list {
  background: var(--line-on-paper);
  border-top: 1px solid var(--line-on-paper);
  margin-left: 0;
  margin-right: 0;
}

.why-item {
  background: var(--paper);
  padding: 34px 8px 34px 0;
}

.why-item .plate-num {
  display: block;
  margin-bottom: 18px;
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 14px;
  color: var(--concrete);
}

/* ============================================================
   EXPERIENCE / NUMBERS (dark)
   ============================================================ */
.numbers-grid {
  margin-top: 60px;
}

.number-item {
  border-left: 1px solid var(--line-on-dark);
  padding: 0 20px 0 24px;
}

.numbers-grid>div:first-child .number-item {
  border-left: none;
  padding-left: 0;
}

.number-item .num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 62px);
  color: var(--paper);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.number-item .num .suffix {
  color: var(--brass-bright);
  font-size: .55em;
}

.number-item .lbl {
  margin-top: 10px;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244, 237, 231, .6);
}

/* ============================================================
   REGIONAL / MAP
   ============================================================ */

.gcc-map {
  position: relative;
}

.gcc-map svg {
  width: 100%;
  height: auto;
}

.gcc-country {
  fill: rgba(244, 237, 231, 0.06);
  stroke: rgba(244, 237, 231, 0.35);
  stroke-width: 1;
  transition: fill .35s ease, stroke .35s ease;
  cursor: pointer;
}

.gcc-country:hover,
.gcc-country.is-active {
  fill: rgba(169, 129, 47, 0.35);
  stroke: var(--brass-bright);
}

.gcc-dot {
  fill: var(--brass-bright);
}

.gcc-dot-pulse {
  fill: none;
  stroke: var(--brass-bright);
  stroke-width: 1;
  transform-origin: center;
  animation: pulse 2.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(.4);
    opacity: .9;
  }

  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

.country-list {
  display: flex;
  flex-direction: column;
}

.country-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-on-dark);
  cursor: pointer;
  transition: padding-left .35s var(--ease), color .35s ease;
}

.country-row:hover,
.country-row.is-active {
  padding-left: 14px;
  color: var(--brass-bright);
}

.country-row .cname {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 26px);
  text-transform: uppercase;
}

.country-row .ccode {
  font-size: 12px;
  letter-spacing: .14em;
  color: rgba(244, 237, 231, .5);
}

.country-row:hover .ccode,
.country-row.is-active .ccode {
  color: var(--brass-bright);
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-grid {
  border-top: 1px solid var(--line-on-paper);
  border-left: 1px solid var(--line-on-paper);
  margin-left: 0;
  margin-right: 0;
}

.client-cell {
  border-right: 1px solid var(--line-on-paper);
  border-bottom: 1px solid var(--line-on-paper);
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  filter: grayscale(1);
  opacity: .55;
  transition: opacity .4s ease, filter .4s ease;
}

.client-cell:hover {
  opacity: 1;
  filter: grayscale(0.2);
}

.client-cell span {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

.clients-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--concrete);
  letter-spacing: .02em;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-row {
  position: relative;
  margin-top: 30px;
}

.process-row::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-on-paper);
  z-index: 0;
}

.process-step {
  position: relative;
  padding-right: 20px;
}

.process-dot {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  background: var(--paper);
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  transition: background .4s ease, color .4s ease, border-color .4s ease;
}

.process-step:hover .process-dot {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--paper);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--concrete);
  max-width: 26ch;
}

/* ============================================================
   NEWS
   ============================================================ */

.news-card {
  cursor: pointer;
}

.news-thumb {
  aspect-ratio: 16/11;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--ink);
}

.news-thumb svg,
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.news-card:hover .news-thumb svg,
.news-card:hover .news-thumb img {
  transform: scale(1.05);
}

.news-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}

.news-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--concrete);
}

.news-meta .date {
  color: var(--concrete);
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 14px;
}

.news-read {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.news-read svg {
  width: 14px;
  height: 14px;
  transition: transform .3s ease;
}

.news-card:hover .news-read svg {
  transform: translateX(4px);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 10vw, 80px) 0;
}

.cta-section .bp-corner {
  position: absolute;
  opacity: .5;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.cta-inner .eyebrow {
  justify-content: center;
}

.cta-inner .headline {
  color: var(--paper);
  margin-bottom: 24px;
}

.cta-inner .lede {
  margin: 0 auto 44px;
}

.cta-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cta-contact {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-on-dark);
  padding-top: 34px;
  color: var(--paper);
}

.cta-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  letter-spacing: .03em;
}

.cta-contact svg {
  width: 16px;
  height: 16px;
  stroke: var(--brass-bright);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: 80px;
}

.footer-top {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-on-dark);
}

.footer-brand img {
  height: 44px;
  margin-bottom: 22px;
}

.footer-brand p {
  color: rgba(244, 237, 231, .65);
  font-size: 14px;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s ease, background .3s ease;
}

.footer-social a:hover {
  border-color: var(--brass-bright);
  background: rgba(169, 129, 47, 0.15);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-col h5 {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 22px;
}

.footer-col ul li {
  margin-bottom: 13px;
}

.footer-col a {
  font-size: 14.5px;
  color: rgba(244, 237, 231, .78);
  position: relative;
  transition: color .3s ease, padding-left .3s ease;
}

.footer-col a:hover {
  color: var(--paper);
  padding-left: 6px;
}

.footer-col p {
  font-size: 14.5px;
  color: rgba(244, 237, 231, .78);
  margin-bottom: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: rgba(244, 237, 231, .55);
}

.footer-bottom .legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom a:hover {
  color: var(--paper);
}

.footer-lang {
  display: flex;
  gap: 8px;
}

/* Back to top */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 300;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-on-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s, background .3s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--brass);
}

.to-top svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1300px) and (min-width: 1081px) {
  .main-nav a {
    padding: 10px 8px;
    font-size: 10.8px;
  }

  .btn[href="#contact"] {
    padding: 12px 16px !important;
    font-size: 11px;
  }
}

@media (max-width: 1080px) {
  .stat-strip>.stat:nth-child(2n+1) {
    border-left: none;
    padding-left: 0;
  }

  .numbers-grid>div:nth-child(3n+1) .number-item {
    border-left: none;
    padding-left: 0;
  }

  .process-row::before {
    display: none;
  }

  .news-grid {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .numbers-grid>div:nth-child(2n+1) .number-item {
    border-left: none;
    padding-left: 0;
  }

  .hero-title {
    font-size: clamp(30px, 9.6vw, 52px);
    line-height: 1.08;
  }

  .hero-title .line {
    white-space: normal;
  }

  .hero-stat {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(244, 237, 231, .18);
    padding-top: 16px;
  }

  .hero-stat:first-child {
    border-top: none;
    padding-top: 0;
  }

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

  .cta-contact {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

/* ============================================================
   INNER BANNER (inner page hero / page title)
   ============================================================ */
.inner-banner {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 180px;
  overflow: hidden;
}

.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(35, 31, 32, 0.94) 0%, rgba(35, 31, 32, 0.55) 55%, rgba(35, 31, 32, 0.35) 100%);
}

.inner-banner-content {
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
}

.inner-banner .hero-tag {
  opacity: 1;
}

.inner-banner .headline {
  color: var(--paper);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 237, 231, 0.65);
  margin-top: 24px;
}

.breadcrumb-nav a {
  color: inherit;
  transition: color .3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--paper);
}

.breadcrumb-nav .sep {
  opacity: .5;
}

.breadcrumb-nav .current {
  color: var(--paper);
}

@media (max-width: 640px) {
  .inner-banner {
    min-height: 42vh;
    padding-top: 140px;
  }
}

/* ============================================================
   MISSION & VISION
   ============================================================ */
.mv-card {
  border: 1px solid var(--line-on-dark);
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 44px);
  height: 100%;
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}

.mv-card:hover {
  border-color: var(--paper);
  background: rgba(244, 237, 231, 0.04);
  transform: translateY(-4px);
}

.mv-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
}

.mv-icon svg {
  width: 100%;
  height: 100%;
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 25px);
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--paper);
}

.mv-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(244, 237, 231, 0.75);
}

/* ============================================================
   CORE VALUES (value-card extends service-card look)
   ============================================================ */
.value-card p {
  margin-bottom: 0;
}