/* ============================================================
   Eventra Hope — Technical Services Contracting
   Visual system: industrial-premium. Charcoal + build-stripe red.
   ============================================================ */

:root {
  --bg: #ffffff;
  --surface: #f4f6f8;
  --surface-2: #eceff3;
  --text: #16191d;
  --muted: #5c6670;
  --primary: #e0402a;       /* build-stripe red — CTAs */
  --primary-dk: #c1351f;
  --secondary: #1e2630;     /* charcoal structure */
  --secondary-2: #11161c;
  --accent: #3fa9dd;        /* sky-blue bar — sparing */
  --border: #e1e5ea;
  --focus: #e0402a;

  --maxw: 1280px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 8px;

  --ff-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(16, 22, 28, .06), 0 2px 8px rgba(16, 22, 28, .04);
  --shadow-md: 0 8px 24px rgba(16, 22, 28, .10), 0 2px 6px rgba(16, 22, 28, .06);
  --shadow-lg: 0 24px 64px rgba(16, 22, 28, .18);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gut);
}

/* ---------- Shared bits ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primary);
  flex: none;
}
.kicker.on-dark { color: #aeb8c4; }

.section { padding-block: clamp(64px, 9vw, 128px); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--secondary); color: #fff; }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-top: 18px;
}
.section-head p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  margin-top: 20px;
  max-width: 60ch;
}
.section--dark .section-head p { color: #b7c0cb; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--primary);
  --fg-btn: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  min-height: 52px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  background: var(--bg-btn);
  color: var(--fg-btn);
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dk); }
.btn--wa { background: #25d366; color: #06351a; }
.btn--wa:hover { background: #1fbb59; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--text); background: transparent; box-shadow: none; }
.btn--ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.32); }
.btn--ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--lg { min-height: 58px; font-size: 17px; padding: 18px 32px; }
.btn .ic { width: 19px; height: 19px; flex: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--primary);
  font-size: 15px;
}
.link-arrow .ic { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* ============================================================
   TOP BAR + NAV
   ============================================================ */
.topbar {
  background: var(--secondary-2);
  color: #c4ccd5;
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 16px;
}
.topbar a { color: #c4ccd5; transition: color .15s; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; align-items: center; gap: 22px; }
.topbar__loc { display: inline-flex; align-items: center; gap: 7px; }
.topbar__loc .ic { width: 14px; height: 14px; color: var(--accent); }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__right .sep { color: #475061; }
@media (max-width: 760px) { .topbar { display: none; } }

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 0; flex: none; }
.brand img { height: 84px; width: auto; }
@media (max-width: 760px) { .brand img { height: 54px; } }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius);
  position: relative;
  transition: color .15s;
}
.nav__links a:hover { color: var(--primary); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

/* dropdown */
.nav__drop { position: relative; }
.nav__drop > a { display: inline-flex; align-items: center; gap: 5px; }
.nav__drop > a .ic { width: 14px; height: 14px; transition: transform .2s; }
.nav__drop:hover > a .ic { transform: rotate(180deg); }
.nav__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 268px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__menu a {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 10px 12px;
  border-radius: var(--radius);
}
.nav__menu a::after { display: none; }
.nav__menu a:hover { background: var(--surface); color: var(--text); }
.nav__menu a strong { font-family: var(--ff-display); font-weight: 600; font-size: 15px; }
.nav__menu a span { font-size: 12.5px; color: var(--muted); font-family: var(--ff-body); }

.nav__cta { display: flex; align-items: center; gap: 10px; flex: none; }
.nav__cta .btn { min-height: 46px; padding: 12px 22px; font-size: 15px; }

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: none;
}
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  transition: transform .25s var(--ease), opacity .2s;
}
.nav__burger span { position: relative; }
.nav__burger span::before { position: absolute; top: -6px; }
.nav__burger span::after { position: absolute; top: 6px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav__links { display: none; }
  .nav__cta .btn--quote-nav { display: none; }
  .nav__burger { display: inline-flex; }
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(17, 22, 28, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s;
}
body.menu-open .drawer { opacity: 1; visibility: visible; }
.drawer__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: #fff;
  padding: 108px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  overflow-y: auto;
}
body.menu-open .drawer__panel { transform: translateX(0); }
.drawer__panel a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 19px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.drawer__panel a.sub { font-size: 16px; font-weight: 500; color: var(--muted); padding-left: 14px; }
.drawer__cta { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.drawer__cta .btn { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 860px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--secondary-2);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s var(--ease), transform 7s linear;
}
.hero__slide.active { opacity: 1; transform: scale(1); }
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11,15,19,.92) 0%, rgba(11,15,19,.45) 42%, rgba(11,15,19,.25) 70%, rgba(11,15,19,.55) 100%),
    linear-gradient(to right, rgba(11,15,19,.7) 0%, rgba(11,15,19,.15) 55%, rgba(11,15,19,0) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(56px, 8vw, 104px); padding-top: 120px; }
.hero__inner { max-width: 860px; }
.hero h1 {
  font-size: clamp(40px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.hero h1 .hl { color: var(--primary); }
.hero__sub {
  margin-top: 24px;
  font-size: clamp(17px, 2.2vw, 22px);
  color: #d7dde4;
  max-width: 56ch;
  line-height: 1.5;
}
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero__meta div { display: flex; flex-direction: column; gap: 3px; }
.hero__meta dt { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-family: var(--ff-display); font-weight: 600; }
.hero__meta dd { margin: 0; font-family: var(--ff-display); font-weight: 600; font-size: 16px; color: #fff; }

.hero__dots {
  position: absolute;
  bottom: 26px; right: var(--gut);
  z-index: 3;
  display: flex;
  gap: 9px;
}
.hero__dots button {
  width: 32px; height: 4px;
  border: none; padding: 0;
  background: rgba(255,255,255,.32);
  cursor: pointer;
  transition: background .2s;
}
.hero__dots button.active { background: var(--primary); }
@media (max-width: 560px) { .hero__dots { display: none; } }

/* ============================================================
   CAPABILITY STRIP
   ============================================================ */
.caps {
  background: var(--secondary-2);
  color: #fff;
  border-top: 3px solid var(--primary);
}
.caps .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.caps__item {
  background: var(--secondary-2);
  padding: 30px clamp(16px, 3vw, 34px);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.caps__item .ic { width: 30px; height: 30px; color: var(--accent); flex: none; margin-top: 2px; }
.caps__item h3 { font-size: 17px; font-weight: 600; }
.caps__item p { font-size: 14px; color: #9aa5b1; margin-top: 5px; line-height: 1.45; }
@media (max-width: 880px) {
  .caps .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .caps .container { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card.flagship { grid-column: span 1; }
.svc-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,22,28,.45), rgba(17,22,28,0) 50%);
}
.svc-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 3px;
}
.svc-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-size: 22px; }
.svc-card__body p { color: var(--muted); font-size: 15px; margin-top: 10px; flex: 1; }
.svc-card__body .link-arrow { margin-top: 18px; }
@media (max-width: 920px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.pf-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filters button {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  min-height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: all .18s var(--ease);
}
.filters button:hover { border-color: var(--text); }
.filters button.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.pf-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.pf-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--surface-2);
  grid-column: span 4;
  grid-row: span 1;
}
.pf-item.tall { grid-row: span 2; }
.pf-item.wide { grid-column: span 6; }
.pf-item.big { grid-column: span 6; grid-row: span 2; }
.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.pf-item:hover img { transform: scale(1.07); }
.pf-item__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,22,28,.86) 0%, rgba(17,22,28,.18) 48%, rgba(17,22,28,0) 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.pf-item:hover .pf-item__ov, .pf-item:focus-within .pf-item__ov { opacity: 1; transform: translateY(0); }
.pf-item__cat {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.pf-item__title { font-family: var(--ff-display); font-weight: 700; font-size: 20px; color: #fff; margin-top: 6px; letter-spacing: -0.01em; }
.pf-item__zoom {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.pf-item:hover .pf-item__zoom { opacity: 1; transform: scale(1); }
.pf-item__zoom .ic { width: 18px; height: 18px; color: #fff; }
.pf-item.is-hidden { display: none; }

@media (max-width: 920px) {
  .pf-grid { grid-auto-rows: 200px; }
  .pf-item, .pf-item.wide { grid-column: span 6; }
  .pf-item.big { grid-column: span 12; }
  .pf-item.tall { grid-row: span 2; }
}
@media (max-width: 560px) {
  .pf-grid { grid-auto-rows: 220px; gap: 12px; }
  .pf-item, .pf-item.wide, .pf-item.big { grid-column: span 12; grid-row: span 1; }
  .pf-item.tall { grid-row: span 1; }
  .pf-item__ov { opacity: 1; transform: none; background: linear-gradient(to top, rgba(17,22,28,.82), rgba(17,22,28,0) 60%); }
}

.pf-note { margin-top: 22px; font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.pf-note .ic { width: 15px; height: 15px; color: var(--muted); flex: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 11, 14, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(1100px, 100%);
  max-height: 80vh;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__cap {
  position: absolute;
  bottom: clamp(18px, 4vw, 40px);
  left: 0; right: 0;
  text-align: center;
  color: #fff;
}
.lightbox__cap .c { color: var(--accent); font-family: var(--ff-display); font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.lightbox__cap .t { font-family: var(--ff-display); font-weight: 600; font-size: 19px; margin-top: 4px; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__close { top: clamp(16px,3vw,28px); right: clamp(16px,3vw,28px); width: 48px; height: 48px; }
.lightbox__close .ic, .lightbox__nav .ic { width: 22px; height: 22px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox__nav.prev { left: clamp(10px,2vw,28px); }
.lightbox__nav.next { right: clamp(10px,2vw,28px); }
@media (max-width: 560px) { .lightbox__nav { width: 44px; height: 44px; bottom: 80px; top: auto; transform: none; } .lightbox__nav.prev { left: 24px; } .lightbox__nav.next { right: 24px; } }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  background: var(--secondary);
  padding: 34px 26px 36px;
  position: relative;
}
.process-step__n {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  letter-spacing: .1em;
}
.process-step h3 { font-size: 21px; margin-top: 16px; color: #fff; }
.process-step p { color: #9aa5b1; font-size: 14.5px; margin-top: 10px; line-height: 1.5; }
@media (max-width: 920px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }
.about-media__tag {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--primary);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  max-width: 240px;
  box-shadow: var(--shadow-md);
}
.about-media__tag strong { font-family: var(--ff-display); font-weight: 700; font-size: 19px; display: block; line-height: 1.1; }
.about-media__tag span { font-size: 13.5px; opacity: .9; display: block; margin-top: 6px; }
.about-copy h2 { font-size: clamp(30px, 4.5vw, 48px); margin-top: 18px; }
.about-copy p { color: var(--muted); margin-top: 20px; font-size: 17px; }
.about-list { margin-top: 26px; display: grid; gap: 14px; }
.about-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.about-list .ic { width: 22px; height: 22px; color: var(--primary); flex: none; margin-top: 1px; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media__tag { left: 16px; bottom: -18px; padding: 18px 20px; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  background: var(--secondary);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("media/world-vape-show-2023.webp");
  background-size: cover;
  background-position: center;
  opacity: .16;
}
.cta-band .container { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { font-size: clamp(32px, 5vw, 56px); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: #c0c8d1; margin-top: 18px; font-size: 19px; }
.cta-band__btns { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 72px);
}
.contact-info h2 { font-size: clamp(30px, 4.5vw, 48px); margin-top: 18px; }
.contact-info > p { color: var(--muted); margin-top: 18px; font-size: 17px; max-width: 46ch; }
.contact-rows { margin-top: 32px; display: grid; gap: 4px; }
.crow {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.crow__ic {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.crow__ic .ic { width: 21px; height: 21px; color: var(--primary); }
.crow__body { display: flex; flex-direction: column; gap: 2px; }
.crow__body .lbl { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-family: var(--ff-display); font-weight: 600; }
.crow__body a, .crow__body .val { font-family: var(--ff-display); font-weight: 600; font-size: 16.5px; color: var(--text); }
.crow__body a:hover { color: var(--primary); }
.crow__body .multi { display: flex; flex-wrap: wrap; gap: 4px 16px; }

.map-ph {
  margin-top: 26px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, var(--surface), var(--surface) 12px, var(--surface-2) 12px, var(--surface-2) 24px);
  min-height: 160px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center;
  padding: 24px;
}
.map-ph .ic { width: 28px; height: 28px; color: var(--muted); }
.map-ph strong { font-family: var(--ff-display); font-weight: 600; font-size: 15px; }
.map-ph span { font-size: 13px; color: var(--muted); font-family: "Space Grotesk", monospace; }

/* form */
.quote-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.quote-form h3 { font-size: 26px; }
.quote-form > p { color: var(--muted); margin-top: 8px; font-size: 15px; }
.form-grid { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-display); font-weight: 600; font-size: 13.5px; }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body);
  font-size: 15.5px;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color .15s, background .15s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); background: #fff;
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--primary); background: #fdf1ef; }
.field .err { color: var(--primary); font-size: 12.5px; font-weight: 500; display: none; }
.field.show-err .err { display: block; }
.form-actions { grid-column: 1/-1; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.form-actions .btn { flex: 1; min-width: 180px; }
.form-note { grid-column: 1/-1; font-size: 13px; color: var(--muted); margin-top: 2px; }
.form-success {
  grid-column: 1/-1;
  display: none;
  align-items: center; gap: 12px;
  background: #ecf7f0;
  border: 1px solid #b9e3c9;
  color: #176a3a;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15px;
}
.form-success.show { display: flex; }
.form-success .ic { width: 20px; height: 20px; flex: none; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--secondary-2); color: #aab3bd; }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(48px, 6vw, 80px);
}
.footer__brand .wordmark { display: block; margin-bottom: 20px; }
.footer__brand .wordmark .wm-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}
.footer__brand .wordmark .wm-name .dot { color: var(--primary); }
.footer__brand .wordmark .wm-sub {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8c97a3;
  margin-top: 9px;
}
.footer__brand p { font-size: 14.5px; max-width: 34ch; line-height: 1.6; }
.footer__brand .socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__brand .socials a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, border-color .18s;
}
.footer__brand .socials a:hover { background: var(--primary); border-color: var(--primary); }
.footer__brand .socials .ic { width: 19px; height: 19px; color: #fff; }
.footer__col h4 { font-family: var(--ff-display); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__col a { font-size: 14.5px; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__col .addr { font-size: 14.5px; line-height: 1.6; font-style: normal; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer__bottom .https { display: inline-flex; align-items: center; gap: 6px; color: #6fd49a; }
.footer__bottom .https .ic { width: 14px; height: 14px; }
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
.mbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: none;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(16,22,28,.1);
}
.mbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  min-height: 56px;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 12px;
}
.mbar a .ic { width: 22px; height: 22px; }
.mbar a.call { color: var(--secondary); }
.mbar a.wa { background: #25d366; color: #06351a; }
.mbar a.quote { background: var(--primary); color: #fff; }
@media (max-width: 1040px) {
  .mbar { display: flex; }
  body { padding-bottom: 76px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
}
