/* =========================================
   MKMH GLOBAL SERVICES — One-Page Styles
   ========================================= */

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: var(--space-16);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

/* Location strip */
.hero-locations {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.loc-dot {
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

/* Headline */
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  margin-bottom: var(--space-6);
  color: var(--text-primary);
}

/* Rotating text wrapper */
.rotating-wrap {
  display: block;
}

.rotating-text {
  display: inline-block;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.rotating-text.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}

.rotating-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Sub-copy */
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: var(--space-8);
}

/* CTA row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

/* Stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.hstat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hstat-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hstat-plus {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: top;
  line-height: 1.1;
}

.hstat-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hstat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== WORK ===== */
.work-section {
  background: #F0FDF4;
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.work-header-text h2 {
  margin-top: var(--space-1);
}

/* Filter buttons */
.work-filters {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border-hover);
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

/* Work grid — 3×2 for 6 cards in same vertical space as 4 */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.work-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.work-card.hidden {
  display: none;
}

.work-img-link {
  display: block;
  text-decoration: none;
}

.work-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Info row */
.work-info {
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.work-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(22,163,74,0.1);
  color: var(--accent);
  border: 1px solid rgba(22,163,74,0.25);
  white-space: nowrap;
}

.work-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

/* ===== BROWSER MOCKUP ===== */
.work-mockup {
  width: 88%;
  max-width: 340px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
}

.mockup-bar {
  height: 22px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.mockup-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: block;
}

.mockup-bar span:nth-child(1) { background: rgba(255,95,87,0.7); }
.mockup-bar span:nth-child(2) { background: rgba(255,189,46,0.7); }
.mockup-bar span:nth-child(3) { background: rgba(40,202,66,0.7); }

.mockup-body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-nav {
  height: 14px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
}

.mockup-hero-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 8px 12px;
}

.mockup-hl {
  height: 11px;
  width: 70%;
  border-radius: 3px;
  background: rgba(255,255,255,0.5);
}

.mockup-sub-hl {
  height: 7px;
  width: 55%;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
}

.mockup-cta-btn {
  height: 16px;
  width: 80px;
  border-radius: 8px;
  background: rgba(22,163,74,0.7);
  margin-top: 4px;
}

/* News site mockup */
.mockup-articles {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px 0;
}

.mockup-article {
  height: 18px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  border-left: 3px solid rgba(248,113,113,0.8);
  padding-left: 5px;
}

/* Car grid mockup */
.mockup-car-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 2px 0;
}

.mockup-car-card {
  height: 28px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
}

/* ===== BRAND MOCKUP ===== */
.brand-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-6);
  min-height: 140px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.brand-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(251,191,36,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251,191,36,0.08);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(251,191,36,0.9);
  letter-spacing: 0.02em;
}

.brand-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.brand-swatches {
  display: flex;
  gap: 6px;
  margin-top: 2px;
}

.brand-swatches span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: block;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--bg-base);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.about-left h2 {
  margin-top: var(--space-2);
  margin-bottom: var(--space-6);
}

.about-left p {
  font-size: 0.975rem;
  line-height: 1.8;
}

/* About meta row */
.about-meta {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.meta-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* About right — Industries */
.about-right {
  padding-top: var(--space-8);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.ind-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  background: #fff;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
  cursor: default;
}

.ind-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(22,163,74,0.06);
}

/* ===== CONTACT ===== */
.contact-section {
  background: #F0FDF4;
  text-align: center;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  max-width: 600px;
  margin: 0 auto;
}

.contact-inner h2 {
  margin-top: 0;
}

.contact-inner p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Big mailto link */
.contact-email {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: opacity var(--transition-fast);
  margin-bottom: var(--space-2);
}

.contact-email:hover {
  opacity: 0.8;
}

/* Location row */
.contact-locs {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: var(--space-2);
}

/* ===== FOOTER SLIM ===== */
.footer-slim {
  border-top: 1px solid var(--border);
  padding: var(--space-6) 0;
  background: var(--bg-surface);
}

.footer-slim-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-wrap: wrap;
}

.footer-nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.footer-nav-links a:hover {
  color: var(--accent);
  background: rgba(22,163,74,0.08);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===== BRAND VISUAL: BASE ===== */
/* Container inside every .work-img */
.bv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: var(--space-4);
}

/* Shared swatches row */
.bv-swatches {
  display: flex;
  gap: 5px;
}

.bv-swatches span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: block;
}

/* ===== BELIEVE INTERIORS ===== */
.bi-bg {
  background: linear-gradient(145deg, #1a1208 0%, #2d1e0f 55%, #3d2915 100%);
}

/* Arch window shape */
.bi-arch-window {
  width: 50px;
  height: 64px;
  border: 2px solid rgba(201,169,110,0.65);
  border-radius: 25px 25px 0 0;
  position: relative;
  overflow: hidden;
  background: rgba(201,169,110,0.05);
}

/* Furniture inside arch */
.bi-sofa {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 12px;
  background: rgba(201,169,110,0.45);
  border-radius: 3px 3px 0 0;
}

.bi-sofa::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 8px;
  background: rgba(201,169,110,0.25);
  border-radius: 2px 2px 0 0;
}

.bi-table {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 6px;
  background: rgba(201,169,110,0.3);
  border-radius: 1px;
}

.bi-plant {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 8px;
  height: 20px;
  background: rgba(100,150,80,0.5);
  border-radius: 4px 4px 2px 2px;
}

.bi-plant::before {
  content: '';
  position: absolute;
  top: 2px;
  left: -5px;
  width: 8px;
  height: 12px;
  background: rgba(100,150,80,0.4);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-10deg);
}

/* Wordmark */
.bi-text { text-align: center; }

.bi-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(245,239,230,0.92);
  text-transform: uppercase;
}

.bi-wordmark-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: rgba(201,169,110,0.85);
  text-transform: uppercase;
  margin-top: -3px;
}

/* ===== BUILDCRAFT CONSTRUCTION ===== */
.bc-bg {
  background: linear-gradient(145deg, #0c0d0f 0%, #1a1e26 55%, #232b38 100%);
}

/* Blueprint grid overlay */
.bc-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(251,146,60,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,146,60,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.bc-bg { position: relative; }

/* Skyline */
.bc-skyline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 48px;
  width: 120px;
}

.bc-skyline .bc-b {
  flex: 1;
  background: rgba(251,146,60,0.5);
  border-radius: 2px 2px 0 0;
  position: relative;
}

.bc-skyline .bc-b:nth-child(1) { height: 42%; }
.bc-skyline .bc-b:nth-child(2) { height: 72%; }
.bc-skyline .bc-b:nth-child(3) { height: 100%; background: rgba(251,146,60,0.85); }
.bc-skyline .bc-b:nth-child(4) { height: 62%; }
.bc-skyline .bc-b:nth-child(5) { height: 82%; }
.bc-skyline .bc-b:nth-child(6) { height: 38%; }

/* Window dots on tallest building */
.bc-skyline .bc-b:nth-child(3)::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 1px;
  box-shadow: 0 8px 0 rgba(255,255,255,0.4), 0 16px 0 rgba(255,255,255,0.3);
}

.bc-rule {
  width: 120px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(251,146,60,0.6), transparent);
}

.bc-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}

.bc-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(251,146,60,0.8);
  text-transform: uppercase;
  margin-top: -6px;
}

/* ===== NEXLIFY — TECH ===== */
.nx-bg {
  background: linear-gradient(145deg, #07090f 0%, #0c1035 55%, #111860 100%);
}

.nx-icon-wrap {
  position: relative;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx-orbit-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(99,102,241,0.35);
  animation: nx-spin 12s linear infinite;
}

.nx-orbit-inner {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.5);
}

@keyframes nx-spin {
  to { transform: rotate(360deg); }
}

.nx-hex {
  width: 36px;
  height: 36px;
  background: rgba(99,102,241,0.22);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.nx-hex span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(165,180,252,0.95);
  line-height: 1;
}

.nx-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
}

.nx-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(99,102,241,0.8);
  text-transform: uppercase;
  margin-top: -6px;
}

.nx-dots {
  display: flex;
  gap: 5px;
  margin-top: 2px;
}

.nx-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(99,102,241,0.4);
  display: block;
}

.nx-dots span:nth-child(3) {
  background: rgba(165,180,252,0.9);
  box-shadow: 0 0 6px rgba(165,180,252,0.6);
}

/* ===== VELOUR LAGOS — FASHION ===== */
.vl-bg {
  background: linear-gradient(145deg, #100a08 0%, #221009 55%, #321a0e 100%);
}

/* Plus / cross mark */
.vl-mark {
  position: relative;
  width: 42px;
  height: 42px;
}

.vl-h {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: rgba(212,160,118,0.75);
  transform: translateY(-50%);
}

.vl-v {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: rgba(212,160,118,0.75);
  transform: translateX(-50%);
}

.vl-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: rgba(245,235,225,0.95);
  text-transform: uppercase;
  line-height: 1;
}

.vl-city {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  color: rgba(212,160,118,0.8);
  text-transform: uppercase;
  margin-top: -4px;
}

.vl-tagline {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== FODELY — TRAVEL & IMMIGRATION ===== */
.fo-bg {
  background: linear-gradient(145deg, #0d0614 0%, #160823 55%, #1d0830 100%);
}

.fo-mark {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6528F7 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(101,40,247,0.45), 0 0 36px rgba(101,40,247,0.2);
}

.fo-mark span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.fo-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(101,40,247,0.4);
}

.fo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
}

.fo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(139,92,246,0.8);
  text-transform: uppercase;
  margin-top: -4px;
}

.fo-tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  font-style: italic;
}

.fo-dots {
  display: flex;
  gap: 5px;
  margin-top: 2px;
}

.fo-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(101,40,247,0.5);
  display: block;
}

.fo-dots span:nth-child(2) {
  background: rgba(139,92,246,0.75);
  box-shadow: 0 0 5px rgba(139,92,246,0.5);
}

/* ===== TUTION360 — IMMIGRATION & TRAVEL ===== */
.t3-bg {
  background: linear-gradient(145deg, #0f0a06 0%, #1c1008 55%, #271808 100%);
}

/* Compass icon */
.t3-compass {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t3-c-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(220,80,20,0.45);
}

.t3-c-ring-2 {
  inset: 6px;
  border-color: rgba(220,80,20,0.2);
  border-style: dashed;
}

/* North needle (red, pointing up) */
.t3-c-needle {
  position: absolute;
  width: 0;
  height: 0;
}

.t3-c-n {
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 14px solid rgba(220,80,20,0.9);
}

/* South needle (dim, pointing down) */
.t3-c-s {
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 14px solid rgba(220,80,20,0.28);
}

/* East needle */
.t3-c-e {
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 10px solid rgba(220,80,20,0.22);
}

/* West needle */
.t3-c-w {
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-right: 10px solid rgba(220,80,20,0.22);
}

.t3-c-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(220,80,20,0.8);
  position: relative;
  z-index: 2;
}

.t3-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
}

.t3-360 {
  color: rgba(220,80,20,0.9);
  font-weight: 800;
}

.t3-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(220,80,20,0.65);
  text-transform: uppercase;
  margin-top: -4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-right {
    padding-top: 0;
  }

  .work-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* 3-col → 2-col at tablet */
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: var(--space-12);
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .hero-stats {
    gap: var(--space-4);
  }

  .hstat-num { font-size: 1.5rem; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .work-header {
    gap: var(--space-4);
  }

  .footer-slim-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .footer-nav-links {
    gap: 0;
  }

  .footer-copy {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero-locations {
    font-size: 0.72rem;
    gap: var(--space-2);
  }

  .about-meta {
    gap: var(--space-6);
  }

  .work-filters {
    gap: var(--space-2);
  }

  .filter-btn {
    font-size: 0.78rem;
    padding: var(--space-2) var(--space-4);
  }

  /* Single column on small phones */
  .work-grid {
    grid-template-columns: 1fr;
  }

  .contact-locs {
    flex-wrap: wrap;
    justify-content: center;
  }
}
