


/* ============================================================
   NOXIMO — Shared Stylesheet
   ============================================================ */

:root {
  --red:        #D42B1E;
  --red-soft:   rgba(212,43,30,0.08);
  --ink:        #0c0c0c;
  --ink2:       #3d3d3d;
  --muted:      #888888;
  --light:      #f7f6f3;
  --border:     #e9e7e3;
  --display:    'Bricolage Grotesque', sans-serif;
  --body:       'DM Sans', sans-serif;
}

.navbar-brand img {
  width:100%;
  max-width:150px;
}

* { box-sizing: border-box; }

/* ── BASE & OVERFLOW FIX ── */
/* overflow-x: clip does not create a scroll container (unlike hidden),
   so position:fixed navbars stay anchored correctly on Android Chrome.
   This is the correct fix for the mobile horizontal-scroll + navbar shift bug. */
html {
  overflow-x: clip;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: #fff;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* Bootstrap .row adds negative horizontal margins equal to half the gutter.
   This is the #1 cause of 1-2px horizontal overflow on mobile.
   Zeroing them out and restoring gutter via column padding fixes it. */
.row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.row > * {
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

/* Ticker animates at width:max-content — contain it so it never
   influences the document scroll width */
.ticker-wrap { contain: layout style; }

/* Decorative radial blobs stay clipped within their sections */
.hero, .page-header { overflow: hidden; }


/* ── TYPOGRAPHY UTILITIES ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
}

.section-title .dim { color: var(--muted); }

.dim { color: #c0bdb8; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0 !important;
  height: 70px;
}

.navbar-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.4px;
  color: var(--ink) !important;
  display: flex;
  align-items: center;
  gap: 9px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark i { color: #fff; font-size: 13px; }

.navbar-nav .nav-link {
  color: var(--muted) !important;
  font-size: 14px;
  font-weight: 400;
  padding: 0.4rem 1rem !important;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--ink) !important; }

.navbar-toggler {
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
}

.navbar-toggler:focus { box-shadow: none !important; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.btn-nav {
  background: var(--ink);
  color: #fff !important;
  border-radius: 100px;
  padding: 9px 22px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav:hover { background: #222; transform: translateY(-1px); }

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 16px 24px 20px;
  }
  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }
  .navbar-nav .nav-link:last-of-type { border-bottom: none; }
  .nav-cta-wrap { margin-top: 16px; }
}

/* ── BUTTONS ── */
.btn-primary-custom {
  background: var(--ink);
  color: #fff;
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary-custom:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  color: #fff;
}

.btn-outline-custom {
  color: var(--ink2);
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--border);
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-custom:hover { border-color: #999; color: var(--ink); }

.btn-red-custom {
  background: var(--red);
  color: #fff;
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-red-custom:hover {
  background: #b82318;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,43,30,0.3);
  color: #fff;
}

/* ── PAGE HEADER (shared across inner pages) ── */
.page-header {
  padding: 140px 0 100px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header-accent {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,43,30,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.0;
}

.page-header p {
  font-size: 18px;
  color: var(--ink2);
  line-height: 1.8;
  font-weight: 300;
  max-width: 540px;
  margin-top: 20px;
}

.header-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.header-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  /* Critical: contains the wide ticker track */
  width: 100%;
  max-width: 100vw;
}

.ticker {
  display: flex;
  animation: ticker 30s linear infinite;
  width: max-content;
  /* Prevent ticker from creating scroll on the page */
  will-change: transform;
}

.ticker-item {
  padding: 0 48px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

@keyframes ticker { to { transform: translateX(-50%); } }

/* ── HERO ── */
.hero {
  padding: 140px 0 100px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,43,30,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-bottom: 36px;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s infinite;
}

@keyframes blink { 0%,100%{ opacity:1 } 50%{ opacity:0.3 } }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
}

.hero h1 .red { color: var(--red); }

.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink2);
  font-weight: 300;
  margin-top: 24px;
  max-width: 480px;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
}

.hero-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.hero-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.img-badge-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-badge-icon i { color: #fff; font-size: 18px; }

.img-badge-text { line-height: 1.2; }
.img-badge-text strong { font-size: 14px; font-weight: 600; display: block; color: var(--ink); }
.img-badge-text span { font-size: 12px; color: var(--muted); }

/* ── SERVICE CARDS ── */
.services-section { padding: 110px 0; }

.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.svc-card:hover { border-color: #ddd; transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ddd;
  margin-bottom: 20px;
  transition: color 0.25s;
}

.svc-card:hover .svc-num { color: var(--red); }

.svc-icon {
  width: 44px; height: 44px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s;
}

.svc-icon i { font-size: 20px; color: var(--ink2); transition: color 0.25s; }
.svc-card:hover .svc-icon { background: var(--red-soft); }
.svc-card:hover .svc-icon i { color: var(--red); }

.svc-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; }

.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }

.svc-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ── PHILOSOPHY STRIP (DARK) ── */
.philosophy-section {
  background: var(--ink);
  color: #fff;
  padding: 110px 0;
}

.philosophy-section .section-label { color: rgba(255,255,255,0.35); }

.phil-quote {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.12;
  margin-bottom: 48px;
}

.phil-quote .dim { color: rgba(255,255,255,0.28); }

.phil-point {
  padding-left: 20px;
  border-left: 2px solid rgba(255,255,255,0.12);
  margin-bottom: 28px;
}
.phil-point:last-child { margin-bottom: 0; }
.phil-point h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.phil-point p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; margin: 0; }

.phil-img { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.phil-img img { width: 100%; height: 400px; object-fit: cover; opacity: 0.8; display: block; }

/* ── PROCESS CARDS ── */
.process-section { padding: 110px 0; background: var(--light); }

.process-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 40px 32px;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

.process-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }

.process-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.process-card h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.process-card p { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ── STATS ── */
.stats-section {
  padding: 90px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item { text-align: center; padding: 24px; }

.stat-num {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -3px;
  color: var(--ink);
  line-height: 1;
}

.stat-num sup { font-size: 0.45em; letter-spacing: 0; vertical-align: super; }
.stat-label { font-size: 14px; color: var(--muted); margin-top: 10px; font-weight: 300; }

/* ── CTA SECTION ── */
.cta-section { padding: 130px 0; text-align: center; border-top: 1px solid var(--border); }

.cta-section h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.0;
}

.cta-section h2 .dim { color: var(--muted); }
.cta-section p { font-size: 17px; color: var(--ink2); font-weight: 300; line-height: 1.7; margin-top: 20px; }

/* ── DARK STRIP (contact / acquisitions) ── */
.dark-strip { background: var(--ink); padding: 110px 0; }

.dark-strip h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  color: #fff;
}

.dark-strip h2 .dim { color: rgba(255,255,255,0.28); }
.dark-strip p { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.8; font-weight: 300; }

.strip-img { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.strip-img img { width: 100%; height: 380px; object-fit: cover; opacity: 0.75; display: block; }

.feature-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.feature-row:last-child { margin-bottom: 0; }

.feat-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon i { color: rgba(255,255,255,0.55); font-size: 17px; }
.feat-text h6 { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.feat-text p { font-size: 13px; color: rgba(255,255,255,0.38); margin: 0; font-weight: 300; line-height: 1.55; }

/* ── ABOUT — STORY ── */
.story-section { padding: 100px 0; }

.story-text p { font-size: 16px; color: var(--ink2); line-height: 1.85; font-weight: 300; margin-bottom: 20px; }
.story-text p:last-child { margin-bottom: 0; }

.pull-quote {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.45;
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--red);
  color: var(--ink2);
  margin-top: 36px;
  margin-bottom: 0;
}

.story-card {
  background: var(--light);
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.story-card:hover { border-color: #ccc; }
.story-card:last-child { margin-bottom: 0; }
.story-card h4 { font-family: var(--display); font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.story-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; font-weight: 300; }

/* ── ABOUT — PRINCIPLES ── */
.principles-section { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 100px 0; }

.principle-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 44px 36px;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}
.principle-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }

.p-num { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.principle-card h3 { font-family: var(--display); font-size: 21px; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 14px; }
.principle-card p { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; margin: 0; }

/* ── ABOUT — VISUAL STATS ── */
.visual-section { padding: 100px 0; }

.visual-img { border-radius: 14px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.visual-img img { width: 100%; height: 400px; object-fit: cover; display: block; }

.visual-stat {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  margin-bottom: 16px;
}
.visual-stat:last-child { margin-bottom: 0; }

.vs-num { font-family: var(--display); font-size: 52px; font-weight: 800; letter-spacing: -2px; color: var(--ink); line-height: 1; }
.vs-num sup { font-size: 0.45em; letter-spacing: 0; }
.vs-label { font-size: 13px; color: var(--muted); margin-top: 6px; font-weight: 300; }

/* ── ABOUT — SKILLS ── */
.skills-section { padding: 100px 0; background: var(--light); border-top: 1px solid var(--border); }

.skill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.skill-row:first-child { border-top: 1px solid var(--border); }
.skill-name { font-size: 15px; font-weight: 400; }

.skill-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--red-soft);
  border: 1px solid rgba(212,43,30,0.15);
  color: var(--red);
}

.domain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.domain-card:hover { border-color: #ccc; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.domain-card:last-child { margin-bottom: 0; }
.domain-card h4 { font-family: var(--display); font-size: 16px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 8px; }
.domain-card p { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; margin: 0; }

/* ── CONTACT — EMAIL CARDS ── */
.contact-section { padding: 110px 0; }

.email-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px 52px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.email-card:hover {
  border-color: #ccc;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.email-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.email-card:hover::after { transform: scaleX(1); }

.card-icon {
  width: 56px; height: 56px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: background 0.3s;
}

.email-card:hover .card-icon { background: var(--red-soft); }
.card-icon i { font-size: 24px; color: var(--ink2); transition: color 0.3s; }
.email-card:hover .card-icon i { color: var(--red); }

.card-type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.email-card h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.email-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--border);
  padding-bottom: 6px;
  transition: color 0.2s, border-color 0.2s;
  word-break: break-all;
}

.email-link:hover { color: var(--red); border-color: var(--red); }
.email-link i { font-size: 15px; transition: transform 0.2s; flex-shrink: 0; }
.email-link:hover i { transform: translate(2px, -2px); }

/* ── CONTACT — RESPONSE SECTION ── */
.response-section {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}

.response-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.response-item:first-child { border-top: 1px solid var(--border); }
.response-item:last-child { border-bottom: none; }

.r-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  min-width: 32px;
  padding-top: 3px;
}

.r-body h5 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.r-body p { font-size: 15px; color: var(--muted); line-height: 1.7; font-weight: 300; margin: 0; }

/* ── ACQUISITIONS — WHAT CARDS ── */
.what-section { padding: 100px 0; background: var(--light); border-bottom: 1px solid var(--border); }

.what-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 36px 32px;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}
.what-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }

.what-icon {
  width: 48px; height: 48px;
  background: var(--light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.what-icon i { font-size: 22px; color: var(--ink2); }

.what-card h4 { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 10px; }
.what-card p { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; margin: 0; }

/* ── ACQUISITIONS — PROJECT CARDS ── */
.projects-section { padding: 100px 0; }

.project-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.project-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.09); transform: translateY(-4px); }

.project-img { position: relative; overflow: hidden; }
.project-img img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.project-card:hover .project-img img { transform: scale(1.03); }

.project-status {
  position: absolute;
  top: 20px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  backdrop-filter: blur(12px);
}

.status-available { background: rgba(255,255,255,0.92); color: #1a7a3c; border: 1px solid rgba(26,122,60,0.2); }
.status-dot-green { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; }

.project-body { padding: 40px; }

.project-domain {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.project-body h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.project-body p { font-size: 15px; color: var(--ink2); line-height: 1.75; font-weight: 300; margin-bottom: 28px; }

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.meta-item { display: flex; align-items: center; gap: 8px; }
.meta-item i { font-size: 15px; color: var(--muted); }
.meta-item span { font-size: 13px; color: var(--ink2); font-weight: 400; }

.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.ptag {
  font-size: 11px; font-weight: 500;
  padding: 5px 13px; border-radius: 100px;
  border: 1px solid var(--border); color: var(--muted);
}

.ptag-red {
  font-size: 11px; font-weight: 600;
  padding: 5px 13px; border-radius: 100px;
  background: var(--red-soft);
  border: 1px solid rgba(212,43,30,0.2);
  color: var(--red);
}

.project-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* YouTube embed inside project cards */
.project-body .ratio {
  margin: 28px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.project-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.video-block { display: flex; flex-direction: column; gap: 10px; }

.video-block .ratio {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.video-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-label i { color: var(--red); font-size: 14px; }

@media (max-width: 767px) {
  .project-videos { grid-template-columns: 1fr; }
}

.btn-enquire {
  background: var(--red);
  color: #fff;
  padding: 11px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-enquire:hover { background: #b82318; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,43,30,0.28); color: #fff; }

/* ── ACQUISITIONS — PROCESS ── */
.acq-process { padding: 100px 0; background: var(--light); border-top: 1px solid var(--border); }

.proc-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.proc-step:last-child { border-bottom: none; }

.proc-n {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  min-width: 28px;
  padding-top: 3px;
}

.proc-body h5 { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 6px; }
.proc-body p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; margin: 0; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  margin-right: 24px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.on { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .email-card { padding: 36px 28px; }
  .project-body { padding: 28px 24px; }
  .hero { padding: 120px 0 72px; }
  .page-header { padding: 120px 0 72px; }
  .services-section, .philosophy-section, .process-section,
  .story-section, .principles-section, .visual-section,
  .skills-section, .contact-section, .response-section,
  .dark-strip, .cta-section, .what-section, .projects-section,
  .acq-process, .stats-section { padding-top: 72px; padding-bottom: 72px; }
}


