/* ==========================================================================
   Candymore Lubricants — site styles
   Palette: petroleum navy + amber (oil) accent + steel + paper
   ========================================================================== */

:root {
  --ink:        #0e1f30;   /* deep petroleum navy */
  --ink-2:      #14293d;
  --ink-3:      #1d3a54;
  --steel:      #35617f;
  --amber:      #f4a81d;   /* oil / gold accent */
  --amber-dk:   #d98e00;
  --amber-soft: #fff6e4;
  --paper:      #ffffff;
  --mist:       #f4f6f8;
  --mist-2:     #eaeef2;
  --line:       #dfe6ec;
  --text:       #1b2a38;
  --muted:      #5c6b79;
  --muted-2:    #8493a1;
  --white-70:   rgba(255,255,255,.72);
  --white-55:   rgba(255,255,255,.55);
  --radius:     14px;
  --radius-sm:  10px;
  --shadow-sm:  0 1px 2px rgba(14,31,48,.06), 0 2px 8px rgba(14,31,48,.05);
  --shadow-md:  0 10px 30px rgba(14,31,48,.10);
  --shadow-lg:  0 24px 60px rgba(14,31,48,.18);
  --maxw:       1180px;
  --ff-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --ff-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.06; margin: 0 0 .4em; font-weight: 700; letter-spacing: .2px; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section[id] { scroll-margin-top: 84px; }
.section { padding: 92px 0; }
.section--tight { padding: 68px 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #eaf1f7; }
.section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-dk);
  margin-bottom: 14px;
}
.section--ink .eyebrow { color: var(--amber); }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.h { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: .5px; }
.lead { font-size: 1.12rem; color: var(--muted); }
.section--ink .lead { color: var(--white-70); }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--amber); --_fg: #14110a;
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--ff-body); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--_bg); color: var(--_fg); cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(217,142,0,.34); }
.btn--amber { background: var(--amber); color: #14110a; }
.btn--amber:hover { background: var(--amber-dk); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.10); box-shadow: none; border-color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); box-shadow: 0 10px 24px rgba(14,31,48,.28); }
.btn--sm { padding: 10px 18px; font-size: .9rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 74px; }
.nav__links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav__links a { font-weight: 500; font-size: .96rem; color: var(--ink-2); position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--amber); transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__links a.nav__cta { color: #fff; margin-left: 6px; }
.nav__links a.nav__cta:hover { color: #fff; }
.nav__links a.nav__cta::after { display: none; }
.nav__toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 26px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Brand / logo ---------- */
.brand { display: inline-flex; align-items: center; }
.brand__logo { display: block; height: 44px; width: auto; max-width: 220px;}
@media (max-width: 520px){ .brand__logo{ height: 36px; max-width: 180px; } }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text b { font-family: var(--ff-display); font-weight: 700; font-size: 1.42rem; letter-spacing: .06em; color: var(--ink); text-transform: uppercase; }
.brand__text span { font-family: var(--ff-body); font-weight: 600; font-size: .62rem; letter-spacing: .38em; color: var(--amber-dk); text-transform: uppercase; margin-top: 2px; }
.site-header .brand__text b { color: var(--ink); }
footer .brand__text b, .hero .brand__text b { color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(9,20,31,.94) 0%, rgba(9,20,31,.82) 42%, rgba(9,20,31,.45) 100%),
    linear-gradient(0deg, rgba(9,20,31,.65), rgba(9,20,31,.15));
}
.hero__inner { position: relative; z-index: 1; padding: 104px 0 0; }
.hero__grid { display: grid; grid-template-columns: 1.15fr; gap: 40px; align-items: end; }
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  text-transform: uppercase; letter-spacing: .5px; max-width: 15ch; margin-bottom: .3em;
}
.hero h1 .amber { color: var(--amber); }
.hero__sub { font-size: 1.18rem; color: var(--white-70); max-width: 56ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }

/* credentials strip */
.creds {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.16);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.10); margin-top: 8px;
}
.creds__item { background: transparent; padding: 22px 8px 26px; }
.creds__item b { display: block; font-family: var(--ff-display); font-size: 1.02rem; letter-spacing: .04em; color: #fff; text-transform: uppercase; }
.creds__item span { font-size: .82rem; color: var(--white-55); }
.creds__item .amber { color: var(--amber); }

/* ---------- Stat / trust bar ---------- */
.trustbar { background: var(--ink); color: #fff; }
.trustbar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 40px; padding-bottom: 40px; }
.stat { text-align: center; border-right: 1px solid rgba(255,255,255,.12); padding: 6px 10px; }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--ff-display); font-size: 2.5rem; color: var(--amber); line-height: 1; }
.stat span { font-size: .92rem; color: var(--white-70); }

/* ---------- About ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.split--rev { grid-template-columns: .9fr 1.1fr; }
.media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--tall { aspect-ratio: 4/5; }
.factbox {
  margin-top: 26px; padding: 20px 24px; background: var(--amber-soft);
  border-left: 4px solid var(--amber); border-radius: 8px; font-weight: 500; color: var(--ink-2);
}
.factbox b { color: var(--ink); }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px;
  font-size: .86rem; font-weight: 600; color: var(--ink-2); background: #fff;
}
.badge svg { width: 15px; height: 15px; color: var(--amber-dk); }

/* media caption chip */
.media__chip {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(14,31,48,.82); color: #fff; padding: 10px 16px; border-radius: 10px;
  font-size: .82rem; font-weight: 600; backdrop-filter: blur(4px);
}
.media__chip b { color: var(--amber); }

/* ---------- Value props / problem ---------- */
.valuegrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.valuecard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.valuecard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.valuecard .ic { width: 46px; height: 46px; border-radius: 11px; background: var(--amber-soft); display: grid; place-items: center; margin-bottom: 16px; }
.valuecard .ic svg { width: 24px; height: 24px; color: var(--amber-dk); }
.valuecard h3 { font-size: 1.35rem; text-transform: uppercase; letter-spacing: .3px; }
.valuecard p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc:hover::before { transform: scaleX(1); }
.svc .ic { width: 52px; height: 52px; border-radius: 12px; background: var(--ink); display: grid; place-items: center; margin-bottom: 18px; }
.svc .ic svg { width: 26px; height: 26px; color: var(--amber); }
.svc h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: .35em; }
.svc p { margin: 0; color: var(--muted); font-size: .96rem; }

.svc-note { margin-top: 26px; font-size: .9rem; color: var(--muted-2); }

/* ---------- FUCHS feature band ---------- */
.fuchs-band {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--amber);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 38px;
}
.fuchs-band__content { padding: 30px 34px; align-self: center; }
.fuchs-band__content h3 { font-size: 1.5rem; text-transform: uppercase; color: var(--ink); margin-bottom: .3em; }
.fuchs-band__content p { color: var(--muted); margin: 0 0 16px; font-size: .96rem; }
.fuchs-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.fuchs-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--amber-soft); border: 1px solid rgba(244,168,29,.5); color: var(--amber-dk);
  font-size: .82rem; font-weight: 600;
}
.fuchs-tag svg { width: 15px; height: 15px; }
.fuchs-band__media {
  background: var(--mist); border-left: 1px solid var(--line); padding: 16px;
  display: flex; align-items: center; min-width: 0;
}
.fuchs-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; min-width: 0; }
.fuchs-tile {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; min-width: 0;
  margin: 0; padding: 11px 10px 9px; display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.fuchs-tile .thumb { height: 66px; width: 100%; display: grid; place-items: center; }
.fuchs-tile .thumb img { max-height: 66px; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.fuchs-tile.is-logo .thumb img { max-height: 40px; }
.fuchs-tile figcaption {
  font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); text-align: center; line-height: 1.2;
}

@media (max-width: 860px) {
  .fuchs-band { grid-template-columns: 1fr; }
  .fuchs-band__media { border-left: 0; border-top: 1px solid var(--line); }
  .fuchs-tile .thumb { height: 84px; }
  .fuchs-tile .thumb img { max-height: 84px; }
  .fuchs-tile.is-logo .thumb img { max-height: 48px; }
}

/* ---------- Sectors ---------- */
.sector-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.sector {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sector:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sector .ic { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%; background: var(--amber-soft); display: grid; place-items: center; }
.sector .ic svg { width: 27px; height: 27px; color: var(--amber-dk); }
.sector h3 { font-size: 1.06rem; font-family: var(--ff-body); font-weight: 700; text-transform: none; letter-spacing: 0; margin-bottom: .3em; }
.sector p { font-size: .85rem; color: var(--muted); margin: 0; }

/* track record panel */
.track {
  margin-top: 36px; display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center;
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #fff; border-radius: var(--radius); padding: 34px 38px; box-shadow: var(--shadow-md);
}
.track__label { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .16em; color: var(--amber); font-size: .8rem; font-weight: 700; }
.track h3 { color: #fff; font-size: 1.9rem; text-transform: uppercase; margin: 4px 0 6px; }
.track p { color: var(--white-70); margin: 0; font-size: .98rem; }
.track__mark { font-family: var(--ff-display); font-weight: 700; font-size: 2.6rem; color: #fff; border: 2px solid var(--amber); border-radius: 12px; padding: 14px 22px; letter-spacing: .04em; white-space: nowrap; }

/* ---------- Mission / vision / values ---------- */
.mvv { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mvv__panel { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: 34px 32px; }
.mvv__panel h3 { font-size: 1.7rem; text-transform: uppercase; color: #fff; }
.mvv__panel p, .mvv__panel li { color: var(--white-70); }
.mvv__panel .mission-line { font-size: 1.28rem; color: #fff; font-family: var(--ff-display); line-height: 1.25; }
.mvv__list li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.mvv__list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 9px; height: 9px; background: var(--amber); border-radius: 2px; transform: rotate(45deg); }
.values { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 6px; }
.value { text-align: left; }
.value .ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(244,168,29,.15); display: grid; place-items: center; margin-bottom: 12px; }
.value .ic svg { width: 22px; height: 22px; color: var(--amber); }
.value h4 { font-size: 1.18rem; color: #fff; text-transform: uppercase; margin-bottom: .3em; }
.value p { font-size: .88rem; color: var(--white-55); margin: 0; }

/* ---------- Leadership ---------- */
.lead-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.portrait {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-3) 60%, var(--steel) 100%);
  box-shadow: var(--shadow-md); display: grid; place-items: center;
}
.portrait__mono { font-family: var(--ff-display); font-weight: 700; font-size: 6rem; color: rgba(255,255,255,.14); letter-spacing: .05em; }
.portrait__tag { position: absolute; left: 20px; bottom: 20px; color: #fff; }
.portrait__tag b { display: block; font-family: var(--ff-display); font-size: 1.5rem; text-transform: uppercase; }
.portrait__tag span { font-size: .85rem; color: var(--amber); font-weight: 600; }
.portrait__ring { position: absolute; inset: 20px; border: 1px dashed rgba(244,168,29,.35); border-radius: 10px; }
.lead-body h3 { font-size: 1.2rem; text-transform: uppercase; color: var(--amber-dk); font-family: var(--ff-body); font-weight: 700; letter-spacing: .12em; font-size: .8rem; }
.lead-body h2 { font-size: 2.2rem; text-transform: uppercase; }
.sig { margin-top: 10px; font-weight: 600; color: var(--ink-2); }
.sig span { display: block; font-size: .85rem; color: var(--muted); font-weight: 500; }

/* ---------- Partners ---------- */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.partner {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.partner .plogo {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase;
  color: var(--ink); letter-spacing: .04em; margin-bottom: 6px; display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px;
}
.partner .plogo .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); }
.partner .plogo img { height: 44px; width: auto; display: block; }
.partner .ptype { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-dk); }
.partner p { color: var(--muted); font-size: .95rem; margin: 10px 0 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.ccard {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.ccard .ic { width: 44px; height: 44px; flex: none; border-radius: 11px; background: var(--amber-soft); display: grid; place-items: center; }
.ccard .ic svg { width: 22px; height: 22px; color: var(--amber-dk); }
.ccard h4 { font-family: var(--ff-body); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 3px; }
.ccard a, .ccard p { color: var(--ink-2); font-weight: 600; margin: 0; font-size: 1.02rem; }
.ccard a:hover { color: var(--amber-dk); }
.ccard .sub { font-weight: 500; color: var(--muted); font-size: .9rem; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px; box-shadow: var(--shadow-md); }
.form h3 { font-size: 1.6rem; text-transform: uppercase; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; letter-spacing: .02em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .98rem; color: var(--text); background: var(--mist); transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--amber); background: #fff; box-shadow: 0 0 0 3px rgba(244,168,29,.18); }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form__note { font-size: .82rem; color: var(--muted-2); margin: 14px 0 0; text-align: center; }

/* map */
.map { margin-top: 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); background: var(--mist); position: relative; }
.map iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(.15); }
.map__link { display: block; text-align: center; padding: 12px; background: #fff; border-top: 1px solid var(--line); font-weight: 600; font-size: .92rem; color: var(--ink-2); }
.map__link:hover { color: var(--amber-dk); }

/* ---------- Field gallery strip ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gtile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/2; box-shadow: var(--shadow-sm); }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gtile:hover img { transform: scale(1.06); }
.gtile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,20,31,.72), rgba(9,20,31,0) 55%); }
.gtile span { position: absolute; left: 16px; bottom: 14px; z-index: 1; color: #fff; font-weight: 600; font-size: .95rem; letter-spacing: .01em; }
.gtile span b { display: block; font-family: var(--ff-display); text-transform: uppercase; font-size: 1.15rem; color: var(--amber); letter-spacing: .03em; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(9,20,31,.95) 0%, rgba(9,20,31,.86) 45%, rgba(9,20,31,.62) 100%); }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(244,168,29,.22), transparent 70%); z-index: 0; }
.cta-band .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-top: 56px; padding-bottom: 56px; }
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-transform: uppercase; margin: 0; max-width: 18ch; }
.cta-band p { color: var(--white-70); margin: 8px 0 0; }

/* ---------- Footer ---------- */
.footer { background: #0a1826; color: #c6d3de; padding: 64px 0 28px; font-size: .95rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer h4 { font-family: var(--ff-body); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer a { color: #c6d3de; }
.footer a:hover { color: var(--amber); }
.footer li { margin-bottom: 9px; }
.footer__about p { color: #9fb0be; max-width: 34ch; margin-top: 14px; }
.footer__legal { color: #8ba0b0; font-size: .82rem; margin-top: 14px; line-height: 1.6; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; color: #7e93a4; font-size: .82rem; }
.footer__bottom a { color: #9fb0be; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .split, .split--rev, .lead-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .media { order: -1; }
  .valuegrid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .mvv { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(3, 1fr); }
  .partner-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .track { grid-template-columns: 1fr; text-align: left; }
  .track__mark { justify-self: start; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 74px; left: 0; right: 0; background: #fff;
    padding: 14px 24px 22px; box-shadow: var(--shadow-md); border-top: 1px solid var(--line);
  }
  .nav.open .nav__links a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--mist-2); }
  .nav.open .nav__links .nav__cta { margin: 10px 0 0; }
  .creds { grid-template-columns: 1fr 1fr; }
  .trustbar .container { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 18px; margin-bottom: 4px; }
  .valuegrid, .svc-grid, .sector-grid, .values { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; gap: 14px; }
  .gtile { aspect-ratio: 16/9; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}
