/* ═══════════════════════════════════════
   AETHER MARKETEERS — MAIN STYLESHEET
   ═══════════════════════════════════════ */

:root {
  --orange:  #FF5C00;
  --amber:   #FF8C00;
  --dark:    #0A0A0A;
  --dark2:   #111111;
  --dark3:   #1A1410;
  --stone:   #1E1810;
  --text:    #F5F0E8;
  --muted:   #8A8070;
  --border:  rgba(255,92,0,0.15);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 14px 32px; border-radius: 2px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.03em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(255,92,0,0.3);
}
.btn-primary:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,92,0,0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,92,0,0.4); color: var(--orange);
  padding: 14px 28px; border-radius: 2px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--orange); background: rgba(255,92,0,0.08); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.15); color: var(--text);
  padding: 14px 32px; border-radius: 2px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ── SECTION COMMON ── */
.section { padding: 100px 0; }
.dark-section { background: var(--dark2); }

.section-eyebrow {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--amber); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.95; letter-spacing: 0.02em;
  color: var(--text); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--orange); }

.section-sub {
  color: var(--muted); font-size: 1rem; font-weight: 300;
  max-width: 480px; line-height: 1.7;
}

.section-header { margin-bottom: 60px; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, border-bottom 0.3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(10,10,10,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.06em;
  color: var(--text);
}
.logo em { color: var(--orange); font-style: normal; }
.logo-stone {
  width: 14px; height: 14px;
  background: radial-gradient(circle at 35% 35%, #FF8C00, #FF5C00, #CC3300);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  box-shadow: 0 0 12px rgba(255,92,0,0.7);
  animation: stonePulse 3s ease-in-out infinite;
}
.logo-stone.small { width: 10px; height: 10px; }
@keyframes stonePulse {
  0%,100% { box-shadow: 0 0 10px rgba(255,92,0,0.6); }
  50% { box-shadow: 0 0 22px rgba(255,140,0,0.9); }
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  padding: 10px 22px; border-radius: 2px;
  box-shadow: 0 0 14px rgba(255,92,0,0.35);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--amber) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(10,10,10,0.98); border-top: 1px solid var(--border);
  padding: 20px 40px;
}
.mobile-menu a {
  padding: 14px 0; font-size: 1.1rem; font-weight: 500;
  color: var(--muted); border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--orange); }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 40px 80px;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,92,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,92,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* AETHER STONE ORB */
.stone-orb {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: min(45vw, 520px); height: min(45vw, 520px);
  display: flex; align-items: center; justify-content: center;
}
.stone-core {
  position: absolute; width: 38%; height: 38%;
  background: radial-gradient(circle at 35% 30%, #FFAA44, #FF5C00, #AA2200);
  clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  box-shadow: 0 0 60px rgba(255,92,0,0.9), 0 0 120px rgba(255,92,0,0.4), inset 0 0 30px rgba(255,200,0,0.3);
  animation: coreRotate 8s linear infinite;
  z-index: 3;
}
@keyframes coreRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.stone-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,92,0,0.2);
  animation: ringPulse 4s ease-in-out infinite;
}
.r1 { width: 55%; height: 55%; animation-delay: 0s; border-color: rgba(255,92,0,0.25); }
.r2 { width: 75%; height: 75%; animation-delay: 0.8s; border-color: rgba(255,92,0,0.15); }
.r3 { width: 95%; height: 95%; animation-delay: 1.6s; border-color: rgba(255,92,0,0.08); }
@keyframes ringPulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}
.stone-glow {
  position: absolute; width: 60%; height: 60%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,0,0.2) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.stone-shards { position: absolute; width: 100%; height: 100%; }
.shard {
  position: absolute;
  background: linear-gradient(135deg, rgba(255,140,0,0.8), rgba(255,92,0,0.4));
  animation: shardFloat 6s ease-in-out infinite;
}
.s1 { width: 8px; height: 20px; top: 12%; left: 52%; clip-path: polygon(50% 0%,100% 100%,0% 100%); animation-delay: 0s; }
.s2 { width: 6px; height: 14px; top: 22%; right: 15%; clip-path: polygon(50% 0%,100% 100%,0% 100%); animation-delay: 1s; }
.s3 { width: 10px; height: 24px; bottom: 18%; right: 18%; clip-path: polygon(50% 0%,100% 100%,0% 100%); animation-delay: 2s; }
.s4 { width: 5px; height: 12px; bottom: 25%; left: 14%; clip-path: polygon(50% 0%,100% 100%,0% 100%); animation-delay: 0.5s; }
.s5 { width: 7px; height: 18px; top: 45%; left: 8%; clip-path: polygon(50% 0%,100% 100%,0% 100%); animation-delay: 1.5s; }
.s6 { width: 9px; height: 22px; top: 65%; right: 10%; clip-path: polygon(50% 0%,100% 100%,0% 100%); animation-delay: 2.5s; }
@keyframes shardFloat {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-14px) rotate(15deg); opacity: 1; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  animation: stonePulse 2s ease-in-out infinite;
}
.hero-headline {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 116px);
  line-height: 0.9; letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-headline .line { display: block; }
.hero-headline .orange { color: var(--orange); }
.hero-headline .l1, .hero-headline .l2, .hero-headline .l3 {
  opacity: 0; transform: translateY(40px);
  animation: lineIn 0.8s ease forwards;
}
.hero-headline .l1 { animation-delay: 0.2s; }
.hero-headline .l2 { animation-delay: 0.4s; }
.hero-headline .l3 { animation-delay: 0.6s; }
@keyframes lineIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: var(--muted);
  max-width: 460px; line-height: 1.75; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.hstat { display: flex; flex-direction: column; gap: 4px; }
.hstat-val {
  font-family: var(--font-display); font-size: 2rem;
  letter-spacing: 0.04em; color: var(--orange); line-height: 1;
}
.hstat-label {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.hstat-div { width: 1px; height: 36px; background: rgba(255,92,0,0.2); }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.62rem; letter-spacing: 0.2em; color: var(--muted);
  animation: fadeInUp 1s ease 1.2s both;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateX(-50%) translateY(12px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; height: 40px; } 50% { opacity: 1; height: 60px; } }

/* ── MARQUEE ── */
.marquee-section {
  background: var(--orange); overflow: hidden;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.1);
}
.marquee-track { display: flex; }
.marquee-inner {
  display: flex; gap: 48px; align-items: center;
  white-space: nowrap; flex-shrink: 0;
  animation: marqueeScroll 28s linear infinite;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.95);
}
.mx { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.service-card {
  background: var(--dark3); padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  border-top: 2px solid transparent;
}
.service-card:hover { background: #1E1810; border-top-color: var(--orange); }
.service-num {
  font-family: var(--font-display); font-size: 0.85rem;
  color: rgba(255,92,0,0.4); letter-spacing: 0.1em; margin-bottom: 20px;
}
.service-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  letter-spacing: 0.04em; color: var(--text); margin-bottom: 14px;
}
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.service-line {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.4s ease;
}
.service-card:hover .service-line { width: 100%; }

/* ── NUMBERS ── */
.numbers-section {
  background: var(--dark2); padding: 90px 0;
  position: relative; overflow: hidden;
}
.numbers-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: clamp(80px, 18vw, 220px);
  color: rgba(255,92,0,0.04); white-space: nowrap; pointer-events: none;
  letter-spacing: 0.1em;
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 2px;
  position: relative; z-index: 1;
}
.num-card {
  background: var(--dark3); padding: 40px 28px; text-align: center;
  border-bottom: 2px solid transparent; transition: border-color 0.3s;
}
.num-card:hover { border-bottom-color: var(--orange); }
.num-val {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--orange); letter-spacing: 0.02em; line-height: 1;
}
.num-suffix { font-family: var(--font-display); font-size: 2rem; color: var(--orange); }
.num-label {
  display: block; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-top: 10px;
}

/* ── WORK ── */
.work-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 2px;
  margin-bottom: 48px;
}
.work-card {
  background: var(--dark3); overflow: hidden;
  transition: transform 0.3s, background 0.3s;
  cursor: default;
}
.work-card:hover { background: #1E1810; transform: translateY(-4px); }
.work-card-top { height: 3px; }
.work-card-top.blue { background: linear-gradient(90deg, #2563EB, #60A5FA); }
.work-card-top.purple { background: linear-gradient(90deg, #7C3AED, #A78BFA); }
.work-card-top.emerald { background: linear-gradient(90deg, #047857, #34D399); }
.work-card-top.pink { background: linear-gradient(90deg, #EC4899, #F472B6); }
.work-card-body { padding: 36px 32px; }
.work-tag {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.work-brand {
  font-family: var(--font-display); font-size: 2rem;
  letter-spacing: 0.04em; color: var(--text); margin-bottom: 8px;
}
.work-headline {
  font-size: 0.95rem; font-weight: 600; color: var(--orange);
  margin-bottom: 14px;
}
.work-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.work-metrics { display: flex; gap: 28px; }
.wm { display: flex; flex-direction: column; gap: 3px; }
.wm-v { font-family: var(--font-display); font-size: 1.4rem; color: var(--text); letter-spacing: 0.04em; }
.wm-l { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.work-cta { text-align: center; }

/* ── BRANDS ── */
.brands-section { padding: 80px 0; background: var(--dark2); }
.brands-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 48px;
}
.brand-pill {
  padding: 10px 22px;
  background: rgba(255,92,0,0.06);
  border: 1px solid rgba(255,92,0,0.15);
  border-radius: 2px;
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.brand-pill:hover { background: rgba(255,92,0,0.12); color: var(--text); border-color: rgba(255,92,0,0.35); }

/* ── PROCESS ── */
.process-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0;
  align-items: start; margin-top: 60px;
}
.process-connector {
  width: 40px; height: 2px; background: rgba(255,92,0,0.25);
  margin-top: 24px; align-self: start;
}
.process-step { padding: 0 8px; }
.process-stone {
  width: 16px; height: 16px;
  background: radial-gradient(circle at 35% 30%, #FFAA44, #FF5C00, #AA2200);
  clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  box-shadow: 0 0 16px rgba(255,92,0,0.7);
  margin-bottom: 16px;
}
.process-label {
  display: block; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.process-content h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  letter-spacing: 0.04em; color: var(--text); margin-bottom: 10px;
}
.process-content p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-stone-accent {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,92,0,0.05); border: 1px solid rgba(255,92,0,0.12);
  padding: 24px; margin-top: 32px; border-radius: 2px;
}
.about-stone {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  background: radial-gradient(circle at 35% 30%, #FFAA44, #FF5C00);
  clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  box-shadow: 0 0 20px rgba(255,92,0,0.6);
  animation: stonePulse 3s ease-in-out infinite;
}
.about-stone-accent span { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.about-stat-card {
  background: var(--dark3); padding: 44px; border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
}
.about-body { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.about-tags span {
  padding: 6px 14px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 2px;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}

/* ── CONTACT ── */
.contact-section {
  padding: 100px 0;
  background: var(--dark); position: relative; overflow: hidden;
}
.contact-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,92,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner { text-align: center; position: relative; z-index: 1; }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.95; letter-spacing: 0.02em; color: var(--text);
  margin-bottom: 20px;
}
.contact-sub { color: var(--muted); font-size: 1rem; margin-bottom: 56px; }
.contact-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 840px; margin: 0 auto 40px;
}
.contact-card {
  background: var(--dark3); padding: 36px 28px; text-align: center;
  border-bottom: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  display: block;
}
.contact-card:hover { background: #1E1810; border-bottom-color: var(--orange); transform: translateY(-4px); }
.cc-icon { font-size: 1.8rem; margin-bottom: 12px; }
.cc-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.cc-val { font-size: 0.88rem; color: var(--muted); }
.contact-note { font-size: 0.78rem; color: rgba(255,255,255,0.2); letter-spacing: 0.08em; }

/* ── FOOTER ── */
.footer {
  background: var(--dark2); border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.2rem;
  letter-spacing: 0.06em; color: var(--text);
}
.footer-logo em { color: var(--orange); font-style: normal; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ── SCROLL REVEAL ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-connector { display: none; }
  .numbers-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .stone-orb { display: none; }
  .hero-content { max-width: 100%; }
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 52px; }
  .hero-stats { gap: 16px; }
}
