/* ============================================================
   ASETRA COMMS — GLOBAL STYLESHEET
   Edit colours / fonts in the :root block below
   ============================================================ */
:root {
  --burgundy:       #800020;
  --burgundy-light: #a0002a;
  --burgundy-dark:  #5a0016;
  --burgundy-muted: rgba(128,0,32,0.08);
  --gold:           #c9a96e;
  --gold-light:     #e8d5a3;
  --near-black:     #0a0a0a;
  --dark-1:         #111111;
  --dark-2:         #161616;
  --dark-3:         #1e1e1e;
  --dark-4:         #252525;
  --dark-5:         #2e2e2e;
  --gray-mid:       #888888;
  --gray-light:     #cccccc;
  --white:          #ffffff;
  --white-90:       rgba(255,255,255,0.9);
  --white-60:       rgba(255,255,255,0.6);
  --white-30:       rgba(255,255,255,0.3);
  --white-10:       rgba(255,255,255,0.08);
  --white-05:       rgba(255,255,255,0.04);

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--near-black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--burgundy);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white); letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--burgundy); color: var(--white);
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 14px 28px; border: none; cursor: pointer;
  text-decoration: none; transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--burgundy-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 13px 28px; border: 1px solid var(--white-30);
  cursor: pointer; text-decoration: none;
  transition: border-color .3s, background .3s;
}
.btn-outline:hover { border-color: var(--white); background: var(--white-10); }

.btn-burgundy-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--burgundy);
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 13px 28px; border: 1px solid var(--burgundy);
  cursor: pointer; text-decoration: none;
  transition: background .3s, color .3s;
}
.btn-burgundy-outline:hover { background: var(--burgundy); color: var(--white); }

/* ── Topbar ── */
.topbar {
  background: var(--dark-1);
  border-bottom: 1px solid var(--white-10);
  padding: 9px 0; font-size: 11px; color: var(--gray-mid);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; }
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-left span { display: flex; align-items: center; gap: 7px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a { color: var(--gray-mid); text-decoration: none; transition: color .2s; }
.topbar-right a:hover { color: var(--white); }
.topbar svg { width: 13px; height: 13px; fill: none; stroke: var(--burgundy); stroke-width: 2; }

/* ── Navigation ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 24px; height: 24px; fill: white; }
.logo-text { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.15em; color: var(--white); }
.logo-sub { font-size: 9px; letter-spacing: 0.2em; color: var(--gray-mid); text-transform: uppercase; display: block; margin-top: -2px; }
.logo-img { height: 44px; width: auto; display: block; object-fit: contain; }
.logo-img--footer { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-light); text-decoration: none;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--burgundy); transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative; padding: 120px 0 80px;
  background: var(--dark-1); overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(128,0,32,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128,0,32,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero-accent { position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: linear-gradient(to bottom, transparent, var(--burgundy), transparent); opacity: .5; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.page-hero-line { width: 40px; height: 1px; background: var(--burgundy); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); letter-spacing: 0.05em; line-height: .95; color: var(--white); margin-bottom: 20px; }
.page-hero h1 span { color: var(--burgundy); }
.page-hero p { font-size: 15px; color: var(--white-60); max-width: 560px; line-height: 1.8; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--gray-mid); margin-bottom: 28px; }
.breadcrumb a { color: var(--gray-mid); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: var(--burgundy); }

/* ── Sections ── */
section { padding: 100px 0; }
.section-header { margin-bottom: 56px; }
.section-header .label { margin-bottom: 14px; display: block; }

/* ── Cards ── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--white-10); border: 1px solid var(--white-10); }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--white-10); border: 1px solid var(--white-10); }

.solution-card {
  background: var(--dark-2); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: background .4s; cursor: pointer;
}
.solution-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--burgundy);
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.solution-card:hover { background: var(--dark-3); }
.solution-card:hover::before { transform: scaleX(1); }
.solution-card a { text-decoration: none; color: inherit; }

.icon-box {
  width: 46px; height: 46px;
  border: 1px solid var(--white-10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: border-color .3s, background .3s;
}
.solution-card:hover .icon-box { border-color: var(--burgundy); background: var(--burgundy-muted); }
.icon-box svg { width: 20px; height: 20px; fill: none; stroke: var(--gray-light); stroke-width: 1.5; transition: stroke .3s; }
.solution-card:hover .icon-box svg { stroke: var(--burgundy); }

.card-title { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 400; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.card-desc { font-size: 13px; color: var(--gray-mid); line-height: 1.75; margin-bottom: 20px; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--burgundy); text-decoration: none;
  transition: gap .2s;
}
.card-link:hover { gap: 14px; }
.card-link svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ── Tag pills ── */
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tag { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-mid); padding: 4px 10px; border: 1px solid var(--white-10); }

/* ── Forms ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3); border: 1px solid var(--white-10);
  color: var(--white); font-size: 14px; font-family: var(--font-body);
  padding: 12px 16px; outline: none; transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--burgundy); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23888' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; background: rgba(0,120,60,0.15); border: 1px solid rgba(0,200,80,0.3); padding: 16px 20px; color: #4ade80; font-size: 13px; margin-top: 12px; }

/* ── Stats row ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--white-10); border: 1px solid var(--white-10); }
.stat-item { background: var(--dark-2); padding: 36px 28px; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 3rem; color: var(--white); letter-spacing: 0.04em; line-height: 1; }
.stat-value span { color: var(--burgundy); }
.stat-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-mid); margin-top: 6px; }

/* ── Process steps ── */
.process-step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--white-10);
  transition: padding-left .3s; cursor: default;
}
.process-step:first-child { border-top: 1px solid var(--white-10); }
.process-step:hover { padding-left: 10px; }
.process-num { font-family: var(--font-display); font-size: 48px; color: var(--white-10); line-height: 1; flex-shrink: 0; width: 52px; text-align: right; transition: color .3s; }
.process-step:hover .process-num { color: var(--burgundy); }
.process-body h4 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--white); margin-bottom: 5px; }
.process-body p { font-size: 13px; color: var(--gray-mid); line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--burgundy); position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-banner-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between; gap: 60px;
  padding: 72px 0;
}
.cta-banner-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: 0.06em; color: var(--white); line-height: .95; margin-bottom: 12px; }
.cta-banner-desc { font-size: 14px; color: rgba(255,255,255,.75); max-width: 400px; line-height: 1.75; }
.cta-banner-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--burgundy); font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 15px 30px; border: none; cursor: pointer; text-decoration: none; transition: transform .2s; }
.btn-white:hover { transform: translateY(-2px); }
.btn-white-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 14px 30px; border: 1px solid rgba(255,255,255,.5); cursor: pointer; text-decoration: none; transition: background .3s; }
.btn-white-outline:hover { background: rgba(255,255,255,.1); border-color: white; }

/* ── Trust strip ── */
.trust-strip { background: var(--dark-2); border-bottom: 1px solid var(--white-10); padding: 24px 0; overflow: hidden; }
.trust-inner { display: flex; align-items: center; gap: 56px; white-space: nowrap; animation: marquee 25s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-partner { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-mid); flex-shrink: 0; }
.trust-dot { width: 4px; height: 4px; background: var(--burgundy); border-radius: 50%; flex-shrink: 0; }

/* ── Footer ── */
footer { background: var(--dark-1); border-top: 1px solid var(--white-10); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 56px; padding: 72px 0 56px; }
.footer-brand-desc { font-size: 13px; color: var(--gray-mid); line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid var(--white-10); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: border-color .3s, background .3s; }
.footer-social a:hover { border-color: var(--burgundy); background: var(--burgundy-muted); }
.footer-social svg { width: 14px; height: 14px; fill: none; stroke: var(--gray-mid); stroke-width: 2; }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--gray-mid); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--white-10); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--gray-mid); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: var(--gray-mid); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── WhatsApp floating ── */
.wa-float {
  position: fixed; right: 28px; bottom: 88px; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  cursor: pointer; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ── Sticky CTA button ── */
.sticky-cta {
  position: fixed; right: 28px; bottom: 28px; z-index: 200;
}
.sticky-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--burgundy); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 12px 20px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 20px rgba(128,0,32,.4);
  transition: transform .2s, box-shadow .2s;
}
.sticky-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(128,0,32,.5); }
.sticky-btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Map ── */
.map-wrapper { width: 100%; height: 420px; border: 1px solid var(--white-10); overflow: hidden; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(185deg) brightness(0.75); }

/* ── Accordion ── */
.accordion-item { border-bottom: 1px solid var(--white-10); }
.accordion-header {
  width: 100%; background: transparent; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer; text-align: left;
}
.accordion-header h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; color: var(--white); }
.accordion-icon { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: var(--burgundy); stroke-width: 2; transition: transform .3s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 0 22px; font-size: 13px; color: var(--gray-mid); line-height: 1.8; max-width: 680px; }
.accordion-item.open .accordion-body { display: block; }

/* ══════════════════════════════════════════════════════
   ENHANCEMENTS — Gallery, Showcase, Mobile Nav, Responsive
   ══════════════════════════════════════════════════════ */

/* ── Portfolio Gallery Strip ── */
.gallery-strip {
  overflow: hidden;
  background: var(--near-black);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  position: relative;
}
.gallery-strip::before,
.gallery-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.gallery-strip::before { left: 0; background: linear-gradient(to right, var(--near-black), transparent); }
.gallery-strip::after  { right: 0; background: linear-gradient(to left, var(--near-black), transparent); }
.gallery-strip-inner {
  display: flex;
  gap: 3px;
  width: max-content;
  animation: gallery-scroll 55s linear infinite;
}
.gallery-strip:hover .gallery-strip-inner { animation-play-state: paused; }
@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-item {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.85);
  transition: filter 0.45s ease, transform 0.55s ease;
  display: block;
}
.gallery-item:hover img {
  filter: brightness(1.0) saturate(1.08);
  transform: scale(1.06);
}
.gallery-item-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  pointer-events: none;
}

/* ── Products-in-Action Showcase ── */
.showcase-section { padding: 0; overflow: hidden; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 2px;
  background: var(--dark-1);
}
.showcase-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  cursor: pointer;
}
.showcase-card.featured { grid-row: span 2; }
.showcase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s ease;
  filter: brightness(0.70) saturate(0.80);
}
.showcase-card:hover .showcase-bg {
  transform: scale(1.07);
  filter: brightness(0.55) saturate(0.75);
}
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
}
.showcase-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px;
  z-index: 2;
}
.showcase-cat {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 6px;
}
.showcase-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.showcase-card.featured .showcase-title { font-size: 1.9rem; }
.showcase-sub {
  font-size: 11px;
  color: var(--white-60);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.showcase-card:hover .showcase-sub { opacity: 1; transform: translateY(0); }
.showcase-pill {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
  padding: 3px 9px;
  border: 1px solid var(--white-10);
  background: rgba(0,0,0,0.45);
  margin-right: 4px;
  margin-top: 4px;
}

/* ── Mobile Navigation ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
  flex-shrink: 0;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  nav { position: sticky; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--white-10);
    padding: 12px 0;
    z-index: 99;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--white-05); }
  .nav-links a { display: block; padding: 14px 40px; font-size: 13px; }
  .nav-links a::after { display: none; }
  .showcase-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .showcase-card.featured { grid-column: span 2; grid-row: span 1; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .ind-card.large { grid-column: span 1; min-height: 240px; }
  .pillar-bar-inner { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .prod-cats { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 36px; }
  .cta-banner-inner { flex-direction: column; gap: 28px; padding: 48px 0; }
  .why-layout { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .proj-card.featured { grid-row: span 1; }
  .proj-card.featured .proj-inner { min-height: 320px; }
  .gallery-item { width: 220px; height: 150px; }
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .showcase-card { min-height: 200px; }
  .showcase-card.featured { grid-column: span 1; min-height: 280px; }
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* ── Responsive: Small mobile ── */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .topbar-left span:nth-child(n+2) { display: none; }
  .topbar-right { display: none; }
  .hero-headline { font-size: clamp(3rem,14vw,5.5rem) !important; }
  .pillar-bar-inner { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { padding: 40px 0; }
}

/* ── Counter animation target ── */
.count-up { display: inline; }

/* ══════════════════════════════════════════════════════
   INTERACTIVITY — Ripple, Tilt, Full-card Click, Touch
   ══════════════════════════════════════════════════════ */

/* Make anchor industry cards behave correctly */
a.ind-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.ind-card .ind-link {
  pointer-events: none; /* the anchor is the whole card now */
}

/* Ripple container — applied to cards & buttons by JS */
.ripple-host { position: relative; overflow: hidden; }
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.15);
  animation: ripple-expand 0.55s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-expand {
  to { transform: scale(4); opacity: 0; }
}

/* Pillar cards — richer hover + cursor */
.pillar-card {
  cursor: pointer;
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.pillar-card { transition: background .4s, transform .3s ease, box-shadow .3s ease; }

/* Product category cards */
.prod-cat, .cat-card {
  cursor: pointer;
  transition: background .3s, transform .25s ease, box-shadow .25s ease;
}
.prod-cat:hover, .cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
}

/* Project tiles */
.project-tile {
  transition: transform .35s ease, box-shadow .35s ease;
}
.project-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.5);
}

/* Process steps — pointer + slide */
.process-step { cursor: default; }
.process-step:hover { background: rgba(128,0,32,0.04); border-radius: 2px; }

/* Brand cards hover */
.brand-card {
  cursor: default;
  transition: background .3s, transform .25s;
}
.brand-card:hover {
  transform: translateY(-3px);
}

/* Why-item hover */
.why-item {
  transition: padding-left .3s, background .3s;
  cursor: default;
}
.why-item:hover {
  padding-left: 6px;
  background: rgba(128,0,32,0.04);
}

/* Solution card (solutions.html) */
.solution-card {
  cursor: pointer;
  transition: background .4s, transform .3s ease, box-shadow .3s ease;
}
.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

/* Touch active feedback */
@media (hover: none) {
  .pillar-card:active,
  .prod-cat:active,
  .cat-card:active,
  .ind-card:active,
  .project-tile:active,
  .solution-card:active {
    filter: brightness(1.15);
    transform: scale(0.98);
  }
}

/* Smooth scroll cursor on clickable image cards */
.ind-card, .proj-card, .project-tile, .showcase-card {
  cursor: pointer;
}

/* Scroll indicator arrow on full-card links */
.ind-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: background .3s;
}
.ind-card:hover::after {
  background: rgba(128,0,32,0.05);
}

/* Focus-visible ring for keyboard accessibility */
a.ind-card:focus-visible,
.pillar-card:focus-visible,
.prod-cat:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

/* ══════════════════════════════════════════════════════
   CINEMATIC HERO SLIDESHOW — crossfade + Ken Burns
   ══════════════════════════════════════════════════════ */

.hero-slides {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  filter: brightness(.78) saturate(.85);
  will-change: transform, opacity;
}
.hero-slide.active {
  opacity: 1;
  animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns   { from{transform:scale(1.08) translate(0%,0%)}    to{transform:scale(1.0) translate(0%,0%)}   }
@keyframes kenburns-2 { from{transform:scale(1.08) translate(-1.2%,0.8%)} to{transform:scale(1.0) translate(0%,0%)} }
@keyframes kenburns-3 { from{transform:scale(1.1)  translate(1%,-1%)}   to{transform:scale(1.0) translate(0%,0%)}   }
@keyframes kenburns-4 { from{transform:scale(1.08) translate(-0.8%,-1%)} to{transform:scale(1.0) translate(0%,0%)} }
.hero-slide:nth-child(2n).active { animation-name: kenburns-2; }
.hero-slide:nth-child(3n).active { animation-name: kenburns-3; }
.hero-slide:nth-child(4n).active { animation-name: kenburns-4; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.78) 0%,
    rgba(10,10,10,0.48) 55%,
    rgba(10,10,10,0.18) 100%
  );
  z-index: 1; pointer-events: none;
}

/* Vertical progress dots */
.slide-dots {
  position: absolute; bottom: 100px; right: 48px;
  z-index: 4; display: flex; flex-direction: column; gap: 8px;
}
.slide-dot {
  width: 3px; height: 20px;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background .3s, height .3s;
  position: relative; overflow: hidden;
}
.slide-dot.active { background: rgba(128,0,32,0.4); height: 32px; }
.slide-dot-fill {
  position: absolute; top: 0; left: 0; right: 0;
  height: 0%; background: var(--burgundy); transition: none;
}
.slide-dot.active .slide-dot-fill {
  height: 100%; transition: height 6s linear;
}

/* PAGE HERO SLIDESHOW (inner pages) */
.page-slides {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 0;
}
.page-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  filter: brightness(.62) saturate(.75);
  will-change: transform, opacity;
}
.page-slide.active {
  opacity: 1;
  animation: kenburns 10s ease-out forwards;
}
.page-slide:nth-child(2n).active { animation-name: kenburns-2; }
.page-slide:nth-child(3n).active { animation-name: kenburns-3; }

.page-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,rgba(10,10,10,0.62) 0%,rgba(10,10,10,0.52) 100%);
  z-index: 1; pointer-events: none;
}

/* Raise page-hero layers above the new slides */
.page-hero::before  { z-index: 2; pointer-events: none; }
.page-hero-accent   { z-index: 3; }
.page-hero-content  { z-index: 3; }

/* Reduced motion: no animations, just crossfade */
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .page-slide { animation: none !important; transform: none !important; }
}
