:root {
  --ink-950: #07080c;
  --ink-900: #0e1118;
  --ink-800: #151a25;
  --ink-700: #242a38;
  --ash-50: #f8fafc;
  --ash-100: #eef2f7;
  --ash-200: #dde4ee;
  --ash-500: #64748b;
  --ash-700: #334155;
  --ember-300: #ffd166;
  --ember-400: #ffae2b;
  --ember-500: #ff7a00;
  --ember-600: #f0441f;
  --ember-700: #bd1818;
  --blood-800: #7f1010;
  --white: #ffffff;
  --radius-lg: 1.1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2.25rem;
  --shadow-soft: 0 22px 70px rgba(7, 8, 12, .10);
  --shadow-hot: 0 18px 50px rgba(240, 68, 31, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: #fff;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 122, 0, .09), transparent 24rem),
    radial-gradient(circle at 90% 10%, rgba(189, 24, 24, .10), transparent 24rem),
    linear-gradient(#fff, #fff);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { touch-action: manipulation; }
:focus-visible {
  outline: 3px solid var(--ember-400);
  outline-offset: 3px;
}
::selection { color: #fff; background: var(--ember-700); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: .75rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: .75rem;
  padding: .7rem 1rem;
  background: #fff;
  color: var(--ink-950);
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(1180px, 100%); margin: 0 auto; padding: 0 1.25rem; }
.section { position: relative; padding: clamp(4rem, 7vw, 6.5rem) 0; }
.section--white { background: rgba(255,255,255,.92); }
.section--muted { background: linear-gradient(180deg, var(--ash-50), #fff); }
.section--ink {
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 122, 0, .22), transparent 28rem),
    radial-gradient(circle at 88% 40%, rgba(189, 24, 24, .24), transparent 32rem),
    linear-gradient(135deg, var(--ink-950), #121722 62%, #210808);
}
.section--ink p { color: rgba(255,255,255,.74); }
.section--cta {
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.32), transparent 16rem),
    linear-gradient(135deg, #7f1010, var(--ember-600) 48%, #ff9f1a);
}
.section__header { max-width: 790px; margin-bottom: 2rem; }
.section__header--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr); gap: 2rem; align-items: end; }
.section__header--split p { margin-bottom: 0; }
.section__narrow { max-width: 850px; text-align: center; }
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--ember-600);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 950;
}
.section--ink .eyebrow, .section--cta .eyebrow, .footer .eyebrow { color: var(--ember-300); }
h1, h2, h3 { margin: 0 0 .75rem; line-height: .98; letter-spacing: -.035em; }
h1 { font-size: clamp(3.25rem, 8vw, 7.4rem); }
h2 { font-size: clamp(2.1rem, 4.3vw, 4.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p { margin: 0 0 1rem; color: var(--ash-700); }
.section--ink h2, .section--ink h3, .section--cta h2 { color: #fff; }

.icon { display: inline-flex; width: 1.15rem; height: 1.15rem; flex: 0 0 auto; color: currentColor; }
.icon svg { width: 100%; height: 100%; fill: currentColor; }
.icon--accent { color: var(--ember-600); }
.icon--muted { color: var(--ember-500); }
.icon--circle {
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 209, 102, .22), rgba(240, 68, 31, .16));
  color: var(--ember-600);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 14px 32px rgba(240,68,31,.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: .95rem 1.4rem;
  background: linear-gradient(135deg, var(--ember-500), var(--ember-600) 58%, var(--ember-700));
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  box-shadow: var(--shadow-hot);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); filter: saturate(1.1); }
.btn--sm { min-height: 38px; padding: .68rem 1rem; font-size: .9rem; }
.btn--ghost { background: rgba(255,255,255,.9); color: var(--ink-950); border: 1px solid rgba(12,17,29,.12); box-shadow: 0 15px 35px rgba(7,8,12,.08); }
.btn--dark { background: var(--ink-950); box-shadow: 0 18px 45px rgba(7,8,12,.22); }
.btn--light { background: #fff; color: var(--ink-950); box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.btn--outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28); box-shadow: none; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .45rem .85rem;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(12,17,29,.08);
  color: var(--blood-800);
  font-weight: 900;
  font-size: .82rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(7,8,12,.08);
}

.topbar { background: var(--ink-950); color: rgba(255,255,255,.82); font-size: .83rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar__inner, .topbar__left { display: flex; align-items: center; gap: 1rem; }
.topbar__inner { justify-content: space-between; padding-top: .5rem; padding-bottom: .5rem; }
.topbar__left { flex-wrap: wrap; }
.topbar__link { display: inline-flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.82); }
.topbar__link:hover { color: #fff; }
.topbar__badge { display: inline-flex; align-items: center; gap: .45rem; color: #fff; font-weight: 900; }
.topbar__pulse { width: .56rem; height: .56rem; border-radius: 50%; background: var(--ember-500); box-shadow: 0 0 0 .27rem rgba(255,122,0,.18); }
.topbar__reg { color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .18em; font-size: .66rem; }

.site-nav { position: sticky; top: 0; z-index: 50; background: rgba(7,8,12,.88); color: #fff; backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.1); }
.site-nav__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; padding-top: .72rem; padding-bottom: .72rem; }
.brand { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.brand__mark { width: 68px; height: 54px; display: grid; place-items: center; border-radius: 1rem; background: radial-gradient(circle at 50% 25%, rgba(255,209,102,.22), rgba(255,122,0,.10) 50%, rgba(255,255,255,.04)); }
.brand__mark img { width: 70px; height: 70px; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(255,122,0,.35)); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-size: 1.13rem; font-weight: 950; letter-spacing: -.03em; }
.brand__tagline { margin-top: .32rem; color: var(--ember-300); font-size: .53rem; text-transform: uppercase; letter-spacing: .23em; white-space: nowrap; }
.site-nav__links { display: flex; justify-content: center; align-items: center; gap: .25rem; }
.site-nav__links a { position: relative; border-radius: 999px; padding: .65rem .9rem; color: rgba(255,255,255,.78); font-weight: 850; font-size: .93rem; }
.site-nav__links a:hover, .site-nav__links a.is-active { color: #fff; background: rgba(255,255,255,.09); }
.site-nav__links a.is-active::after { content: ''; position: absolute; left: 50%; bottom: .24rem; width: .33rem; height: .33rem; border-radius: 50%; background: var(--ember-500); transform: translateX(-50%); }
.site-nav__cta { justify-self: end; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #fff; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.nav-toggle span { width: 18px; height: 2px; border-radius: 999px; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(115deg, rgba(7,8,12,.98), rgba(14,17,24,.96) 52%, rgba(67,14,14,.94)); padding: clamp(3.5rem, 7vw, 6rem) 0 2.3rem; }
.hero__mesh { position: absolute; inset: -10% -5% auto auto; width: 56rem; height: 40rem; opacity: .86; filter: blur(3px); background: radial-gradient(circle at 54% 20%, rgba(255,209,102,.42), transparent 7rem), radial-gradient(circle at 52% 48%, rgba(255,122,0,.40), transparent 16rem), radial-gradient(circle at 75% 70%, rgba(189,24,24,.45), transparent 20rem); transform: rotate(-9deg); }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__copy { max-width: 700px; }
.hero h1 { max-width: 11ch; margin: 1rem 0 1.1rem; text-transform: uppercase; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(3.2rem, 6.5vw, 6.3rem); font-weight: 400; letter-spacing: .01em; }
.hero h1 span { color: var(--ember-300); text-shadow: 0 0 42px rgba(255,122,0,.48); }
.hero__lead { max-width: 620px; color: rgba(255,255,255,.78); font-size: clamp(1.04rem, 1.6vw, 1.2rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0; }
.hero__highlights { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(170px, 1fr)); gap: .75rem; }
.hero__highlights li { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.86); font-weight: 780; }
.hero__visual { position: relative; min-height: 520px; }
.hero-card { position: relative; min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.hero-card::before { content: ''; position: absolute; inset: 2rem 1rem; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-2xl); box-shadow: inset 0 0 0 22px rgba(255,255,255,.025), 0 0 100px rgba(255,122,0,.22); }
.hero-card__logo { position: relative; width: min(72%, 330px); z-index: 2; opacity: .95; }
.hero-card__logo img { width: 100%; height: auto; filter: drop-shadow(0 32px 58px rgba(255,122,0,.42)); }
.hero-card__photo { position: relative; z-index: 2; width: min(88%, 430px); margin: 0; border-radius: 1.35rem; overflow: hidden; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); box-shadow: 0 35px 90px rgba(0,0,0,.40); }
.hero-card__photo img { width: 100%; height: 210px; object-fit: cover; }
.hero-card__photo figcaption { padding: .95rem 1.1rem; color: #fff; font-weight: 900; background: linear-gradient(90deg, rgba(7,8,12,.97), rgba(7,8,12,.78)); }
.hero-card__photo figcaption span { display: block; color: var(--ember-300); text-transform: uppercase; letter-spacing: .2em; font-size: .65rem; margin-bottom: .25rem; }
.stats-strip { position: relative; margin-top: clamp(2rem, 5vw, 4.3rem); display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border-radius: 1.25rem; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.stats-strip div { padding: 1.15rem; background: rgba(255,255,255,.05); }
.stats-strip div + div { border-left: 1px solid rgba(255,255,255,.12); }
.stats-strip strong { display: block; color: var(--ember-300); font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1; }
.stats-strip span { color: rgba(255,255,255,.72); font-size: .9rem; }

.page-hero { position: relative; overflow: hidden; color: #fff; padding: clamp(3.5rem, 7vw, 6rem) 0; background: radial-gradient(circle at 86% 12%, rgba(255,122,0,.36), transparent 28rem), linear-gradient(135deg, var(--ink-950), var(--ink-800) 58%, #4b0d0d); }
.page-hero::after { content: ''; position: absolute; inset: auto -8rem -12rem auto; width: 34rem; height: 34rem; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,0,.33), transparent 62%); pointer-events: none; }
.page-hero--compact { padding: clamp(3rem, 6vw, 5rem) 0; }
.page-hero h1 { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; text-transform: uppercase; font-weight: 400; letter-spacing: .012em; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 760px; }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr minmax(260px, 380px); gap: 2rem; align-items: center; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.page-hero__card, .page-hero__metrics, .page-hero__contact-card { border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-xl); background: rgba(255,255,255,.08); backdrop-filter: blur(14px); box-shadow: 0 28px 75px rgba(0,0,0,.25); }
.page-hero__card { min-height: 250px; display: grid; place-items: center; text-align: center; padding: 1.4rem; }
.page-hero__card img { width: 220px; max-height: 220px; object-fit: contain; filter: drop-shadow(0 24px 46px rgba(255,122,0,.42)); }
.page-hero__card strong { color: #fff; font-size: 1.08rem; }
.page-hero__metrics { padding: 2rem; text-align: center; }
.page-hero__metrics strong { display: block; color: var(--ember-300); font-size: 5rem; line-height: 1; }
.page-hero__metrics span { color: rgba(255,255,255,.78); font-weight: 900; }
.page-hero__contact-card { padding: 1.2rem; display: grid; gap: .85rem; }
.page-hero__contact-card a { display: flex; align-items: center; gap: .65rem; padding: 1rem; border-radius: 1rem; background: rgba(255,255,255,.08); color: #fff; font-weight: 900; }
.page-hero--services { padding: clamp(3rem, 5.5vw, 5rem) 0; }
.page-hero--services h1 { max-width: 14ch; font-size: clamp(3rem, 4.8vw, 4.8rem); line-height: .96; }
.page-hero--services .page-hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr); }
.services-hero-card { position: relative; min-height: 430px; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-2xl); background: var(--ink-900); box-shadow: 0 32px 90px rgba(0,0,0,.38); }
.services-hero-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(7,8,12,.95) 100%); }
.services-hero-card img { width: 100%; height: 430px; object-fit: cover; }
.services-hero-card figcaption { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; padding: 1.5rem; }
.services-hero-card .eyebrow { margin-bottom: .4rem; color: var(--ember-300); }
.services-hero-card strong, .services-hero-card small { display: block; color: #fff; }
.services-hero-card strong { font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.15; }
.services-hero-card small { margin-top: .5rem; color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.5; }
.page-services .section__header h2 { font-size: clamp(2.35rem, 3.8vw, 3.6rem); line-height: 1; }

.mission-grid, .service-grid, .gallery-grid, .about-grid, .contact-grid, .footer__grid, .process-grid, .gallery-strip { display: grid; gap: 1.25rem; }
.mission-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-grid--large { align-items: stretch; }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.about-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr); align-items: start; }
.contact-grid { grid-template-columns: minmax(0, 1fr) 385px; align-items: start; }
.gallery-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card, .service-card, .process-card, .gallery-card { position: relative; overflow: hidden; border: 1px solid rgba(12,17,29,.09); border-radius: var(--radius-xl); background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); }
.card, .service-card, .process-card { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.card:hover, .service-card:hover, .process-card:hover { transform: translateY(-3px); border-color: rgba(240,68,31,.22); box-shadow: 0 26px 74px rgba(7,8,12,.14); }
.card { padding: clamp(1.25rem, 2.6vw, 2rem); }
.card--glass { background: rgba(255,255,255,.72); backdrop-filter: blur(12px); }
.card ul, .service-card ul, .company-card ul, .contact-card ul { margin: 1rem 0 0; padding: 0; list-style: none; display: grid; gap: .8rem; }
.card li, .service-card li, .company-card li, .contact-card li { display: flex; align-items: flex-start; gap: .6rem; color: var(--ash-700); }
.section--ink .card, .section--ink .service-card, .section--ink .process-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: #fff; box-shadow: 0 24px 70px rgba(0,0,0,.25); }
.section--ink .service-card p, .section--ink .process-card p, .section--ink .service-card li { color: rgba(255,255,255,.74); }
.service-card { padding: 1.35rem; }
.service-card::after { content: ''; position: absolute; inset: auto -3rem -5rem auto; width: 11rem; height: 11rem; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,0,.18), transparent 66%); }
.service-card__number { display: block; margin-bottom: 1rem; color: rgba(255,122,0,.75); font-weight: 950; letter-spacing: .18em; }
.service-card__header { display: grid; grid-template-columns: auto 1fr; gap: .95rem; align-items: start; }
.service-card__header h2, .service-card__header h3 { margin-bottom: .35rem; }
.service-card--large { padding: 1.6rem; }
.service-card--large h2 { font-size: clamp(1.55rem, 2.2vw, 2rem); line-height: 1.05; }
.service-card--large .service-card__header { grid-template-columns: 1fr; }
.service-card--large .icon--circle { margin-bottom: .25rem; }
.service-card--large ul { padding-top: 1rem; border-top: 1px solid rgba(12,17,29,.08); }
.process-card { padding: 1.25rem; }
.process-card__index { display: inline-block; margin-bottom: 1rem; color: var(--ember-600); font-size: .78rem; font-weight: 950; letter-spacing: .2em; }
.process-card .icon--circle { margin-bottom: 1rem; }

.ceo-panel { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 1.4rem; align-items: start; border: 1px solid rgba(12,17,29,.08); border-radius: var(--radius-2xl); padding: clamp(1.4rem, 4vw, 3rem); background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,247,237,.9)); box-shadow: var(--shadow-soft); }
.ceo-panel--dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: #fff; }
.ceo-panel--dark p { color: rgba(255,255,255,.78); }
.ceo-panel__mark { width: 74px; height: 74px; display: grid; place-items: center; border-radius: 1.25rem; color: #fff; background: linear-gradient(135deg, var(--ember-500), var(--ember-700)); box-shadow: var(--shadow-hot); }
.ceo-panel__mark .icon { width: 2rem; height: 2rem; }
.signature { color: var(--ink-950); font-weight: 950; }
.ceo-panel--dark .signature { color: var(--ember-300); }

.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-grid--masonry { align-items: stretch; }
.gallery-card { margin: 0; background: var(--ink-950); color: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(7,8,12,.22); }
.gallery-card img { width: 100%; height: 245px; object-fit: cover; transition: transform .35s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card__trigger { display: block; width: 100%; padding: 0; border: 0; color: inherit; background: transparent; cursor: zoom-in; }
.gallery-card__trigger:focus-visible { outline-offset: -4px; }
.gallery-card--wide { grid-column: span 2; }
.gallery-card--wide img { height: 330px; }
.gallery-card figcaption { padding: 1rem; font-weight: 850; background: linear-gradient(180deg, rgba(12,17,29,.82), rgba(7,8,12,1)); }
.gallery-card--strip img { height: 210px; cursor: default; }
.gallery-slider { margin-top: 2rem; display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 1rem; border-radius: var(--radius-xl); background: var(--ink-950); color: #fff; box-shadow: var(--shadow-soft); }
.gallery-slider__viewport { text-align: center; min-width: 0; }
.gallery-slider__viewport img { width: 100%; max-height: 430px; object-fit: cover; border-radius: 1rem; }
.gallery-slider__viewport p { color: #fff; font-weight: 900; margin: .8rem 0 .2rem; }
.gallery-slider__counter { color: var(--ember-300); font-weight: 900; font-size: .85rem; }
.gallery-slider__control { min-width: 112px; }

.list { padding: 0; margin: 1rem 0 0; }
.list--checks { list-style: none; display: grid; gap: .8rem; }
.list--checks li { display: flex; gap: .6rem; align-items: flex-start; }
.list--checks li::before { content: '✓'; display: grid; place-items: center; width: 1.35rem; height: 1.35rem; border-radius: 50%; background: rgba(255,122,0,.14); color: var(--ember-600); font-weight: 950; flex: 0 0 auto; }
.company-card, .contact-card { background: linear-gradient(160deg, #fff, var(--ash-50)); }
.company-card li, .contact-card li { align-items: center; }
.contact-card { position: sticky; top: 112px; }
.contact-card img { width: 170px; max-height: 170px; object-fit: contain; margin: -.35rem auto .4rem; filter: drop-shadow(0 18px 35px rgba(255,122,0,.32)); }
.coverage { margin-top: 1.2rem; border-radius: 1.1rem; padding: 1rem; background: linear-gradient(135deg, rgba(255,209,102,.18), rgba(240,68,31,.12)); }
.coverage p { margin-bottom: 0; }
.sectors-grid { grid-template-columns: .75fr 1fr; gap: 2rem; align-items: start; }
.sector-list { display: flex; flex-wrap: wrap; gap: .75rem; }
.sector-list span { padding: .82rem 1rem; border-radius: 999px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); color: #fff; font-weight: 900; box-shadow: 0 18px 44px rgba(0,0,0,.12); }

.form { display: flex; flex-direction: column; gap: 1rem; }
.form--premium { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
label { display: flex; flex-direction: column; gap: .42rem; color: var(--ink-800); font-weight: 850; font-size: .92rem; }
input, textarea { width: 100%; border-radius: 1rem; border: 1px solid rgba(12,17,29,.13); background: #fff; padding: .92rem 1rem; color: var(--ink-950); outline: none; transition: border .18s ease, box-shadow .18s ease; }
input:focus, textarea:focus { border-color: var(--ember-500); box-shadow: 0 0 0 4px rgba(255,122,0,.14); }
textarea { resize: vertical; min-height: 160px; }
.consent-row { flex-direction: row; align-items: flex-start; gap: .62rem; color: var(--ash-500); font-weight: 520; font-size: .86rem; margin: .15rem 0; }
.consent-row input[type='checkbox'] { width: 18px; height: 18px; margin-top: .18rem; accent-color: var(--ember-600); flex: 0 0 auto; }
.consent-row a { color: var(--blood-800); font-weight: 900; text-decoration: underline; }
.consent-row--note { margin-top: -.35rem; }
.hp-field { position: absolute; left: -9999px; }
.alert { border-radius: 1rem; padding: 1rem 1.1rem; margin-bottom: 1rem; border: 1px solid transparent; font-weight: 650; }
.alert--success { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.32); color: #065f46; }
.alert--error { background: rgba(248,113,113,.14); border-color: rgba(239,68,68,.35); color: #7f1d1d; }
.alert--error ul { margin: .45rem 0 0; padding-left: 1.2rem; }

.cta-panel { border-radius: var(--radius-2xl); padding: clamp(1.5rem, 4vw, 3rem); display: flex; justify-content: space-between; align-items: center; gap: 1.3rem; overflow: hidden; }
.cta-panel--large { background: rgba(7,8,12,.18); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(12px); }
.cta-panel h2 { margin-bottom: .5rem; }
.cta-panel p { color: rgba(255,255,255,.84); margin: 0; max-width: 720px; }

.footer { position: relative; overflow: hidden; color: rgba(255,255,255,.76); background: var(--ink-950); padding: 3.5rem 0 1.8rem; }
.footer::before { content: ''; position: absolute; inset: -16rem auto auto -10rem; width: 34rem; height: 34rem; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,0,.22), transparent 66%); pointer-events: none; }
.footer__grid { position: relative; grid-template-columns: 1.15fr .85fr 1fr .9fr; align-items: start; }
.footer__brand img { width: 125px; height: 125px; object-fit: contain; margin: -.8rem 0 .2rem; filter: drop-shadow(0 18px 35px rgba(255,122,0,.35)); }
.footer__title { color: #fff; font-weight: 950; }
.footer p { color: rgba(255,255,255,.68); margin: .28rem 0; }
.footer a { color: rgba(255,255,255,.82); }
.footer a:hover { color: #fff; }
.footer__service-list { margin: .5rem 0 0; padding: 0; list-style: none; display: grid; gap: .34rem; }
.footer__service-list li::before { content: '• '; color: var(--ember-500); }
.footer__links { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer__links a { border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: .42rem .88rem; font-size: .86rem; font-weight: 850; color: rgba(255,255,255,.74); }
.footer__copy { position: relative; text-align: center; margin-top: 2.2rem; font-size: .82rem; color: rgba(255,255,255,.5); }

.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; max-width: 440px; margin: 0 auto; padding: 1rem; border-radius: 1.15rem; z-index: 80; color: #fff; background: rgba(7,8,12,.94); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 24px 80px rgba(0,0,0,.35); display: grid; gap: .75rem; }
.cookie-banner[hidden], .lightbox[hidden] { display: none !important; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.78); font-size: .9rem; }
.cookie-banner a { color: var(--ember-300); text-decoration: underline; }
.lightbox { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 2rem; background: rgba(0,0,0,.9); backdrop-filter: blur(8px); }
.lightbox__content { display: grid; justify-items: center; max-width: min(1100px, 92vw); }
.lightbox img { max-width: min(1100px, 92vw); max-height: 78vh; border-radius: 1.1rem; box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.lightbox__close { position: fixed; top: 1rem; right: 1rem; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); font-size: 2rem; cursor: pointer; }
.lightbox p { color: #fff; text-align: center; margin: .9rem 0 0; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--reveal-delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
@media (max-width: 1080px) {
  .service-grid, .process-grid, .gallery-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 940px) {
  .site-nav__inner { grid-template-columns: auto auto; }
  .site-nav__links { position: absolute; top: 100%; left: 0; right: 0; display: grid; justify-content: stretch; gap: .35rem; max-height: calc(100vh - 76px); overflow-y: auto; padding: 1rem 1.25rem 1.25rem; background: rgba(7,8,12,.98); border-bottom: 1px solid rgba(255,255,255,.12); box-shadow: 0 24px 60px rgba(0,0,0,.35); transform-origin: top; transform: scaleY(0); opacity: 0; pointer-events: none; transition: transform .18s ease, opacity .18s ease; }
  .site-nav__links.is-open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .site-nav__links a { padding: .9rem 1rem; }
  .site-nav__cta { display: none; }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .topbar__reg { display: none; }
  .hero__grid, .page-hero__grid, .about-grid, .contact-grid, .sectors-grid, .section__header--split { grid-template-columns: 1fr; }
  .page-hero--services .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero--services h1 { max-width: 14ch; }
  .services-hero-card, .services-hero-card img { min-height: 340px; height: 340px; }
  .hero__visual { min-height: 460px; }
  .hero-card { min-height: 460px; max-width: 600px; margin: 0 auto; }
  .hero-card__logo { width: min(68%, 300px); }
  .hero-card__photo { width: min(88%, 430px); }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip div:nth-child(odd) { border-left: 0; }
  .stats-strip div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 680px) {
  .container { padding: 0 1rem; }
  h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.15rem); }
  .brand__mark { width: 58px; height: 48px; }
  .brand__mark img { width: 58px; height: 58px; }
  .brand__name { font-size: 1rem; }
  .brand__tagline { font-size: .47rem; letter-spacing: .17em; }
  .topbar__inner { align-items: center; }
  .topbar__left { gap: .6rem; }
  .topbar__badge { margin-right: auto; }
  .topbar__link[href^="mailto:"] { display: none; }
  .topbar__link { font-size: .78rem; }
  .hero { padding-top: 2.75rem; }
  .hero h1 { max-width: none; font-size: clamp(2.75rem, 13vw, 4rem); line-height: .92; }
  .page-hero--services { padding: 2.75rem 0; }
  .page-hero--services h1 { max-width: none; font-size: clamp(2.7rem, 12vw, 4rem); }
  .services-hero-card, .services-hero-card img { min-height: 290px; height: 290px; }
  .hero__highlights { grid-template-columns: 1fr; }
  .hero__visual, .hero-card { min-height: 405px; }
  .hero-card__logo { width: min(72%, 260px); }
  .hero-card__photo { width: 94%; }
  .hero-card__photo img { height: 190px; }
  .stats-strip, .service-grid, .process-grid, .gallery-grid, .gallery-strip, .footer__grid { grid-template-columns: 1fr; }
  .stats-strip div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .gallery-card--wide { grid-column: auto; }
  .gallery-card--wide img, .gallery-card img { height: 235px; }
  .form__row { grid-template-columns: 1fr; }
  .gallery-slider { grid-template-columns: 1fr; }
  .gallery-slider__viewport { order: -1; }
  .gallery-slider__control { min-width: 0; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .btn { width: 100%; }
  .ceo-panel { grid-template-columns: 1fr; }
  .lightbox { padding: 1rem; }
  .lightbox img { max-width: 94vw; max-height: 74vh; }
}

@media (hover: none) {
  .card:hover, .service-card:hover, .process-card:hover, .gallery-card:hover { transform: none; }
  .gallery-card:hover img { transform: none; }
}
