/* ==========================================================================
   VNA Developers — Main Stylesheet
   Palette: Deep Navy + Amber Gold. Single theme (no light/dark switch).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --navy-900: #0a1628;
  --navy-800: #0f2038;
  --navy-700: #16304f;
  --navy-600: #1e3f66;
  --gold-500: #f0a500;
  --gold-400: #ffb92e;
  --gold-600: #d18d00;

  /* Neutrals */
  --ink: #101828;
  --body: #4a5568;
  --muted: #78849a;
  --line: #e4e8ef;
  --surface: #ffffff;
  --surface-2: #f5f7fa;
  --surface-3: #eef2f7;

  /* Gold gradient — used on large numerals and accent rules */
  --gold-grad: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 45%, var(--gold-600) 100%);

  /* Layered shadows read softer and deeper than a single blur */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, .04), 0 4px 12px rgba(10, 22, 40, .05);
  --shadow-md: 0 2px 6px rgba(10, 22, 40, .04), 0 12px 32px rgba(10, 22, 40, .08);
  --shadow-lg: 0 4px 12px rgba(10, 22, 40, .05), 0 28px 64px rgba(10, 22, 40, .13);
  --shadow-gold: 0 4px 12px rgba(240, 165, 0, .18), 0 16px 34px -8px rgba(240, 165, 0, .45);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: 1240px;
  --header-h: 82px;

  --font-head: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.15rem); letter-spacing: -.033em; }
h2 { font-size: clamp(1.95rem, 3.9vw, 2.95rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.22rem, 2vw, 1.5rem); letter-spacing: -.018em; }

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

::selection { background: var(--gold-500); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--surface-3); }
::-webkit-scrollbar-thumb { background: var(--navy-700); border-radius: 10px; border: 3px solid var(--surface-3); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-500); }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: clamp(72px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(52px, 6.5vw, 86px); }

/* Alt sections carry a very faint dot grid so they read as paper, not grey */
.section--alt { background: var(--surface-2); overflow: hidden; }
.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image: radial-gradient(rgba(10, 22, 40, .07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.section--navy { background: var(--navy-900); color: rgba(255, 255, 255, .78); overflow: hidden; }
.section--navy h2, .section--navy h3 { color: #fff; }
/* Warm glow so navy panels don't look like a flat block */
.section--navy::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: min(680px, 70vw);
  aspect-ratio: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(240, 165, 0, .13) 0%, transparent 62%);
}

.section > .container,
.section--alt > .container,
.section--navy > .container { position: relative; z-index: 1; }

/* Oversized faint numeral behind a section — add data-watermark="01" in the HTML */
[data-watermark] { position: relative; overflow: hidden; }
[data-watermark]::after {
  content: attr(data-watermark);
  position: absolute;
  top: -.12em;
  right: 1.5%;
  z-index: 0;
  font-family: var(--font-head);
  font-size: clamp(8rem, 19vw, 19rem);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.05em;
  color: var(--navy-900);
  opacity: .035;
  pointer-events: none;
  user-select: none;
}
.section--navy[data-watermark]::after { color: #fff; opacity: .045; }

.grid { display: grid; gap: 30px; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mw-720 { max-width: 720px; }
.mb-0 { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   4. Typography blocks
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold-500);
}
.section--navy .eyebrow { color: var(--gold-400); }

.section-head { margin-bottom: clamp(46px, 5.5vw, 66px); }
.section-head.text-center .eyebrow::before { display: none; }
.section-head p { font-size: 1.06rem; margin-bottom: 0; }
.section--navy .section-head p { color: rgba(255, 255, 255, .68); }

/* Gold rule under centred headings */
.section-head.text-center h2::after {
  content: '';
  display: block;
  width: 58px;
  height: 3px;
  margin: 20px auto 0;
  border-radius: 3px;
  background: var(--gold-grad);
}

.lead { font-size: 1.16rem; line-height: 1.68; color: var(--body); }
.text-gold { color: var(--gold-500); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.btn-primary:hover { background: var(--gold-400); border-color: var(--gold-400); transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.btn-dark { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.btn-dark:hover { background: var(--navy-700); border-color: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--navy-900); background: var(--navy-900); color: #fff; transform: translateY(-3px); }

.btn-ghost { border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy-900); border-color: #fff; transform: translateY(-3px); }

.btn-sm { padding: 11px 22px; font-size: .875rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .93rem;
  color: var(--navy-900);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--gold-600); }
.link-arrow:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   6. Preloader
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-mark {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: #fff;
}
.preloader-mark span { color: var(--gold-500); }
.preloader-bar {
  width: 170px;
  height: 3px;
  margin-top: 18px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .14);
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold-500);
  animation: loadSlide 1.1s infinite var(--ease);
}
@keyframes loadSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* --------------------------------------------------------------------------
   7. Top bar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .72);
  font-size: .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  flex-wrap: wrap;
}
.topbar-list { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.topbar-list a { display: inline-flex; align-items: center; gap: 8px; }
.topbar-list a:hover { color: var(--gold-400); }
.topbar-list svg { width: 15px; height: 15px; color: var(--gold-500); flex-shrink: 0; }
.topbar-socials { display: flex; align-items: center; gap: 8px; }
.topbar-socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  transition: all .3s var(--ease);
}
.topbar-socials a:hover { background: var(--gold-500); color: var(--navy-900); }
.topbar-socials svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   8. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 48px; width: auto; object-fit: contain; }
.brand-fallback {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.brand-text {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.brand-text strong { color: var(--gold-500); font-weight: 800; }
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-list > li > a {
  position: relative;
  font-family: var(--font-head);
  font-size: .96rem;
  font-weight: 600;
  color: var(--ink);
  padding-block: 8px;
}
.nav-list > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width .3s var(--ease);
}
.nav-list > li > a:hover { color: var(--gold-600); }
.nav-list > li > a:hover::after,
.nav-list > li > a.is-active::after { width: 100%; }
.nav-list > li > a.is-active { color: var(--gold-600); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  padding: 13px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, .55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: all .35s var(--ease);
  z-index: 890;
}
.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   9. Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 7.5s linear;
}
.hero-slide.is-active img { transform: scale(1); }
.hero-slides::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 22, 40, .95) 0%, rgba(10, 22, 40, .86) 42%, rgba(10, 22, 40, .68) 100%),
    radial-gradient(ellipse 60% 70% at 18% 55%, rgba(240, 165, 0, .12), transparent 65%);
}

/* Two-column overlay: copy on the left, stats card on the right */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
  padding-block: clamp(82px, 10vw, 124px);
}
.hero-content { max-width: 620px; }
.hero .eyebrow { color: var(--gold-400); }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold-500); }
.hero p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Frosted stats card in the right column */
.hero-card {
  position: relative;
  padding: 34px 32px 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .65);
}
.hero-card::before {
  content: '';
  position: absolute;
  left: 32px;
  top: -2px;
  width: 64px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--gold-grad);
}
.hero-card-label {
  display: block;
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 8px;
}
.hero-card-title {
  color: #fff;
  font-size: 1.32rem;
  margin-bottom: 20px;
}

/* Compact enquiry form inside the hero card.
   NOTE: every selector is scoped through .field so it outranks the light-theme
   .field rules further down the file — otherwise labels render navy on navy. */
.hero-form .form-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.hero-form .field { gap: 7px; }

.hero-form .field label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
}
.hero-form .field label span { color: var(--gold-400); }

.hero-form .field input,
.hero-form .field select {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: .93rem;
}
.hero-form .field input::placeholder { color: rgba(255, 255, 255, .5); }

/* Native select arrow is dark on dark — swap it for a white chevron */
.hero-form .field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
}
/* Dropdown list itself is drawn by the OS, so it needs light colours */
.hero-form .field select option { color: var(--ink); background: #fff; }

.hero-form .field input:focus,
.hero-form .field select:focus {
  outline: none;
  background-color: rgba(255, 255, 255, .16);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(240, 165, 0, .22);
}

/* Browser autofill forces a light fill — override it or the text vanishes */
.hero-form .field input:-webkit-autofill,
.hero-form .field input:-webkit-autofill:hover,
.hero-form .field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px #15294a inset;
  caret-color: #fff;
}

.hero-form .field.has-error input,
.hero-form .field.has-error select {
  border-color: #ff8f8f;
  background-color: rgba(255, 90, 90, .14);
}
.hero-form .field .field-error { font-size: .75rem; color: #ffb0b0; min-height: 0; }
.hero-form .field .field-error:empty { display: none; }

.hero-form button[type="submit"] { margin-top: 4px; }

.hero-form .form-status {
  margin-top: 14px;
  padding: 11px 14px;
  font-size: .86rem;
  border-radius: var(--radius-sm);
}
.hero-form .form-status.is-success {
  background: rgba(64, 200, 130, .16);
  border: 1px solid rgba(64, 200, 130, .42);
  color: #b6f2d3;
}
.hero-form .form-status.is-error {
  background: rgba(255, 90, 90, .14);
  border: 1px solid rgba(255, 120, 120, .42);
  color: #ffc4c4;
}

.hero-form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
}
.hero-form-note svg { width: 14px; height: 14px; color: var(--gold-500); flex-shrink: 0; }
.hero-form-note a { color: var(--gold-400); font-weight: 600; }
.hero-form-note a:hover { color: #fff; }

.hero-stats li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}
.hero-stats li:last-child { border-bottom: 0; }
.hero-stats strong {
  flex-shrink: 0;
  min-width: 88px;
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats span { font-size: .9rem; color: rgba(255, 255, 255, .72); }

.hero-card-call {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}
.hero-card-call i {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  transition: transform .3s var(--ease);
}
.hero-card-call i svg { width: 18px; height: 18px; }
.hero-card-call:hover i { transform: scale(1.08) rotate(-8deg); }
.hero-card-call small {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 3px;
}
.hero-card-call b {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  transition: color .3s var(--ease);
}
.hero-card-call:hover b { color: var(--gold-400); }

.hero-dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .3);
  transition: all .3s var(--ease);
}
.hero-dots button.is-active { background: var(--gold-500); width: 54px; }

.hero-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--gold-500);
}
.hero-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 46px;
  padding-block: 18px;
  justify-content: center;
}
.hero-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-900);
}
.hero-strip svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   10. Page banner (inner pages)
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  background: var(--navy-900);
  padding-block: clamp(70px, 10vw, 120px);
  overflow: hidden;
}
.page-banner-bg { position: absolute; inset: 0; }
.page-banner-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 40, .92), rgba(10, 22, 40, .55));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 14px; }
.page-banner p { color: rgba(255, 255, 255, .72); max-width: 620px; margin-bottom: 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 18px;
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 10px; color: rgba(255, 255, 255, .3); }
.breadcrumb li:last-child { color: var(--gold-400); }

/* --------------------------------------------------------------------------
   11. Media / image frames
   -------------------------------------------------------------------------- */
.media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-3);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--tall { aspect-ratio: 3 / 4; }
.media--wide { aspect-ratio: 16 / 10; }
.media--square { aspect-ratio: 1 / 1; }

/* Gold corner brackets — wrap a .media in .framed to get them */
.framed { position: relative; }
.framed::before,
.framed::after {
  content: '';
  position: absolute;
  width: 54px;
  height: 54px;
  border: 3px solid var(--gold-500);
  pointer-events: none;
  z-index: 2;
}
.framed::before {
  top: -14px;
  left: -14px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 6px 0 0 0;
}
.framed::after {
  bottom: -14px;
  right: -14px;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 6px 0;
}

/* Fallback shown when an asset file is missing (added by JS) */
.img-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  height: 100%;
  width: 100%;
  padding: 22px;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, #eaeff6 0 12px, #e2e8f1 12px 24px);
  color: var(--navy-700);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}
.img-placeholder::before {
  content: '🖼';
  display: block;
  font-size: 1.7rem;
  margin-bottom: 8px;
  opacity: .6;
}
.img-placeholder b { display: block; color: var(--gold-600); margin-top: 4px; font-weight: 700; }

/* --------------------------------------------------------------------------
   12. About / split sections
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.split--reverse .split-media { order: 2; }

.about-figure { position: relative; }
.about-figure .media--tall { box-shadow: var(--shadow-lg); }
.about-figure .about-inset {
  position: absolute;
  right: -26px;
  bottom: -30px;
  width: 55%;
  border: 8px solid #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface-3);
  aspect-ratio: 4 / 3;
}
.about-figure .about-inset img { width: 100%; height: 100%; object-fit: cover; }

.exp-badge {
  position: absolute;
  z-index: 3;
  left: -22px;
  top: 34px;
  background: var(--gold-grad);
  color: var(--navy-900);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.exp-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.exp-badge span { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.check-list { display: grid; gap: 14px; margin: 26px 0 30px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--ink);
}
.check-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-500);
}
.section--navy .check-list li { color: rgba(255, 255, 255, .84); }

/* --------------------------------------------------------------------------
   13. Service cards
   -------------------------------------------------------------------------- */
.services-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .4s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: var(--gold-500);
  transition: width .45s var(--ease);
}
.service-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg), 0 22px 46px -22px rgba(240, 165, 0, .45);
  border-color: transparent;
}
.service-card:hover::after { width: 100%; }

.service-card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-3); }
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.08); }

.service-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--gold-500);
  margin-bottom: 18px;
  transition: all .4s var(--ease);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--gold-500); color: var(--navy-900); transform: rotate(-6deg); }

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .96rem; margin-bottom: 18px; }
.service-card .link-arrow { margin-top: auto; }

.service-num {
  position: absolute;
  right: 22px;
  top: 22px;
  font-family: var(--font-head);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy-900);
  opacity: .06;
}

/* Detailed service block (services page) */
.service-block { scroll-margin-top: 120px; }
.service-block + .service-block { margin-top: clamp(56px, 7vw, 96px); }
.service-block .split { align-items: center; }
.service-block-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.service-block-badge .service-icon { margin-bottom: 0; width: 52px; height: 52px; }
.service-block-badge span {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill-list li {
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: .86rem;
  font-weight: 500;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   14. Stats / counters
   -------------------------------------------------------------------------- */
.stats-band { position: relative; overflow: hidden; }
.stats-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.stat {
  text-align: center;
  padding: 32px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all .35s var(--ease);
}
.stat:hover { background: rgba(240, 165, 0, .1); border-color: rgba(240, 165, 0, .4); transform: translateY(-5px); }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.025em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  margin-top: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .72);
}

/* --------------------------------------------------------------------------
   15. Feature / why-us cards
   -------------------------------------------------------------------------- */
.feature-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.feature {
  position: relative;
  padding: 34px 30px;
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .4s var(--ease);
}
.feature::before {
  content: '';
  position: absolute;
  inset: -1px;            /* sits exactly over the 1px border */
  border-radius: inherit;
  padding: 1px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md), 0 18px 40px -20px rgba(240, 165, 0, .4);
  border-color: transparent;
}
.feature:hover::before { opacity: 1; }
.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(240, 165, 0, .2), rgba(240, 165, 0, .08));
  color: var(--gold-600);
  margin-bottom: 20px;
  transition: all .4s var(--ease);
}
.feature:hover .feature-icon { background: var(--gold-grad); color: var(--navy-900); }
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feature p { font-size: .94rem; margin-bottom: 0; }

/* Process — connected steps, not cards.
   A dashed gold connector runs from each numbered node to the next. */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.pstep { position: relative; }

.pstep::before {
  content: '';
  position: absolute;
  top: 27px;               /* vertical centre of the node */
  left: 70px;              /* node width + breathing space */
  right: -30px;            /* reaches the next column */
  height: 2px;
  background-image: linear-gradient(90deg, var(--gold-500) 0 7px, transparent 7px 15px);
  background-size: 15px 2px;
  background-repeat: repeat-x;
  opacity: .5;
}
.pstep:last-child::before { display: none; }

.pstep-num {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: .01em;
  margin-bottom: 24px;
  box-shadow: 0 0 0 7px var(--surface-2);
  transition: all .4s var(--ease);
}
.pstep:hover .pstep-num {
  background: var(--gold-grad);
  color: var(--navy-900);
  transform: translateY(-4px);
  box-shadow: 0 0 0 7px var(--surface-2), var(--shadow-gold);
}

.pstep h3 { font-size: 1.14rem; margin-bottom: 10px; transition: color .3s var(--ease); }
.pstep:hover h3 { color: var(--gold-600); }
.pstep p { font-size: .94rem; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   16. Projects
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 42px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--body);
  transition: all .3s var(--ease);
}
.filter-btn:hover { border-color: var(--navy-900); color: var(--navy-900); }
.filter-btn.is-active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

.projects-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.project-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-800);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.project-card.is-hidden { display: none; }
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, .94) 8%, rgba(10, 22, 40, .35) 48%, transparent 78%);
  opacity: .82;
  transition: opacity .4s var(--ease);
}
.project-card:hover img { transform: scale(1.09); }
.project-card:hover::after { opacity: 1; }

.project-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px;
  transform: translateY(14px);
  transition: transform .4s var(--ease);
}
.project-card:hover .project-info { transform: translateY(0); }
.project-tag {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.project-info h3 { color: #fff; font-size: 1.22rem; margin-bottom: 4px; }
.project-info p { color: rgba(255, 255, 255, .7); font-size: .88rem; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   17. Testimonials
   -------------------------------------------------------------------------- */
.testi-viewport { overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform .6s var(--ease);
}
.testi-slide { min-width: 100%; padding: 4px; }
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.testi-quote { width: 42px; height: 42px; color: var(--gold-500); margin: 0 auto 18px; }
.testi-card blockquote {
  margin: 0 0 24px;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.75;
  color: var(--ink);
  font-weight: 400;
}
.testi-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 18px; color: var(--gold-500); }
.testi-stars svg { width: 18px; height: 18px; }
.testi-person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-3);
  flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.testi-person strong { display: block; font-family: var(--font-head); color: var(--ink); }
.testi-person span { font-size: .86rem; color: var(--muted); }

.slider-nav { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.slider-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  transition: all .3s var(--ease);
}
.slider-nav button:hover { background: var(--gold-500); border-color: var(--gold-500); }
.slider-nav svg { width: 18px; height: 18px; }

/* Clients strip */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  align-items: center;
}
.client-logo {
  display: grid;
  place-items: center;
  padding: 22px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 96px;
  transition: all .3s var(--ease);
}
.client-logo img { max-height: 46px; width: auto; filter: grayscale(1); opacity: .65; transition: all .3s var(--ease); }
.client-logo:hover { border-color: var(--gold-500); box-shadow: var(--shadow-sm); }
.client-logo:hover img { filter: none; opacity: 1; }

/* --------------------------------------------------------------------------
   18. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}
.cta-band-bg { position: absolute; inset: 0; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10, 22, 40, .95) 30%, rgba(240, 165, 0, .22));
}
.cta-band .container { position: relative; z-index: 2; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  padding-block: clamp(52px, 7vw, 84px);
}
.cta-inner h2 { color: #fff; margin-bottom: 10px; max-width: 640px; }
.cta-inner p { color: rgba(255, 255, 255, .72); margin-bottom: 0; max-width: 560px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   19. Contact
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}

.info-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: all .35s var(--ease);
}
.info-card + .info-card { margin-top: 16px; }
.info-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.info-card-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--gold-500);
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p { margin-bottom: 0; font-size: .95rem; }
.info-card a:hover { color: var(--gold-600); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.6vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}
.field label span { color: #e03131; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  font-size: .96rem;
  transition: all .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 165, 0, .14);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #e03131; background: #fff5f5; }
.field-error { font-size: .8rem; color: #e03131; min-height: 1em; }

.form-note { font-size: .85rem; color: var(--muted); margin: 16px 0 0; }
.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: #e7f7ee; color: #1a7f4b; border: 1px solid #b7e6cc; }
.form-status.is-error { background: #fff1f1; color: #c92a2a; border: 1px solid #ffc9c9; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
  background: var(--surface-3);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   20. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.accordion { max-width: 820px; margin-inline: auto; }
.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: all .3s var(--ease);
}
.acc-item + .acc-item { margin-top: 14px; }
.acc-item.is-open { border-color: var(--gold-500); box-shadow: var(--shadow-sm); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--ink);
}
.acc-head:hover { color: var(--gold-600); }
.acc-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--navy-900);
  transition: all .3s var(--ease);
}
.acc-icon svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.acc-item.is-open .acc-icon { background: var(--gold-500); }
.acc-item.is-open .acc-icon svg { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-body-inner { padding: 0 24px 22px; font-size: .96rem; }

/* --------------------------------------------------------------------------
   21. Team
   -------------------------------------------------------------------------- */
.team-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* 4:3 + top anchor crops the name badge baked into the supplied photos,
   so the name shows once (from .team-body) instead of twice. */
.team-photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-3); }
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-body { padding: 20px 22px 24px; text-align: center; }
.team-body h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-body span { font-size: .86rem; color: var(--gold-600); font-weight: 600; }

/* Timeline */
.timeline { position: relative; max-width: 860px; margin-inline: auto; padding-left: 34px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--gold-500);
}
.timeline-year {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold-600);
  font-size: .9rem;
  letter-spacing: .08em;
}
.timeline-item h3 { font-size: 1.12rem; margin: 4px 0 6px; }
.timeline-item p { margin-bottom: 0; font-size: .95rem; }

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .66); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-block: clamp(50px, 6vw, 76px);
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--gold-500);
}
.footer-col p { font-size: .94rem; }
.footer-brand { margin-bottom: 20px; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text small { color: rgba(255, 255, 255, .5); }
.footer-links li + li { margin-top: 11px; }
.footer-links a { font-size: .94rem; display: inline-flex; align-items: center; gap: 9px; }
.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: .5;
  transition: all .3s var(--ease);
}
.footer-links a:hover { color: var(--gold-400); }
.footer-links a:hover::before { opacity: 1; transform: scale(1.35); }

.footer-contact li { display: flex; gap: 12px; font-size: .94rem; }
.footer-contact li + li { margin-top: 16px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-500); flex-shrink: 0; margin-top: 4px; }
.footer-contact a:hover { color: var(--gold-400); }

.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  transition: all .3s var(--ease);
}
.footer-socials a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer-socials svg { width: 17px; height: 17px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .88rem;
}
.footer-bottom a:hover { color: var(--gold-400); }
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   23. Floating actions
   -------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 880;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--gold-500);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .35s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-500); color: var(--navy-900); }
.to-top svg { width: 20px; height: 20px; }

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 880;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .42);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; }

/* --------------------------------------------------------------------------
   24. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   25. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-list { gap: 24px; }
  .nav { gap: 22px; }
}

@media (max-width: 992px) {
  :root { --header-h: 74px; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(330px, 86vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 96px 28px 32px;
    box-shadow: -12px 0 40px rgba(10, 22, 40, .16);
    transform: translateX(105%);
    transition: transform .4s var(--ease);
    z-index: 895;
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-list > li > a { display: block; padding: 15px 2px; font-size: 1.02rem; }
  .nav-list > li > a::after { display: none; }
  .nav-cta { margin-top: 26px; }
  .nav-toggle { display: flex; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-figure .about-inset { right: 0; width: 48%; }
  .exp-badge { left: 0; }
  .hero-dots { right: 24px; bottom: 26px; }

  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-content { max-width: none; }
  .hero-card { max-width: 480px; }
  .framed::before, .framed::after { width: 40px; height: 40px; }

  /* Process drops to two per row — no connector at the end of a row */
  .process { grid-template-columns: repeat(2, 1fr); gap: 38px 30px; }
  .pstep:nth-child(2n)::before { display: none; }
}

@media (max-width: 768px) {
  .topbar-list li:nth-child(3) { display: none; }
  .hero { min-height: 78vh; }
  .hero-grid { padding-block: 66px; }
  [data-watermark]::after { opacity: .025; }

  /* Process stacks vertically, connector becomes a dashed spine */
  .process { grid-template-columns: 1fr; gap: 0; }
  .pstep { padding-left: 78px; padding-bottom: 36px; }
  .pstep:last-child { padding-bottom: 0; }
  .pstep-num { position: absolute; left: 0; top: 0; margin-bottom: 0; }
  .pstep::before,
  .pstep:nth-child(2n)::before {
    display: block;
    top: 68px;
    bottom: 8px;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
    background-image: linear-gradient(180deg, var(--gold-500) 0 7px, transparent 7px 15px);
    background-size: 2px 15px;
    background-repeat: repeat-y;
  }
  .pstep:last-child::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .section-head { margin-bottom: 38px; }
  .about-figure .about-inset { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 16px; border-width: 0; }
  .exp-badge { position: relative; left: auto; top: auto; display: inline-block; margin-bottom: 14px; }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .topbar-inner { justify-content: center; }
  .topbar-list { gap: 16px; justify-content: center; }
  .topbar-socials { display: none; }
  .brand-text { font-size: 1.1rem; }
  .brand-logo, .brand-fallback { height: 42px; width: auto; }
  .brand-fallback { width: 42px; }
  .btn { padding: 13px 22px; font-size: .9rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-strip .container { gap: 10px 24px; }
  .projects-grid { grid-template-columns: 1fr; }
  .to-top { right: 16px; bottom: 16px; }
  .wa-float { right: 16px; bottom: 74px; }
}

/* Print */
@media print {
  .topbar, .site-header, .site-footer, .to-top, .wa-float, .preloader, .hero-dots { display: none !important; }
  body { color: #000; }
}
