/* ═══════════════════════════════════════════════════
   ECOM STRATEGY — Crystalline Precision
   ═══════════════════════════════════════════════════ */

/* ─── Fonts ─── */
@font-face {
  font-family: 'Trade Gothic';
  src: url('../fonts/TradeGothicLT.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trade Gothic';
  src: url('../fonts/TradeGothicLTLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trade Gothic Condensed';
  src: url('../fonts/TradeGothicLTBoldCondensed.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Abel';
  src: url('../fonts/Abel-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── Variables ─── */
:root {
  --red: #E63329;
  --orange: #F7941D;
  --yellow: #FFC72C;
  --green: #8DC63F;
  --teal: #00B7A8;
  --purple: #7B6BA5;
  --charcoal: #2C2C2C;
  --charcoal-light: #3C3C3B;
  --smoke: #F6F5F3;
  --white: #FEFEFE;
  --text: #2C2C2C;
  --text-muted: #6B6B6B;
  --text-light: #A0A0A0;

  --font-heading: 'Trade Gothic Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Abel', 'Helvetica Neue', sans-serif;
  --font-trade: 'Trade Gothic', 'Helvetica Neue', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --max-width: 1200px;
  --border-radius: 2px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Section Labels & Titles ─── */
.section-label {
  font-family: var(--font-trade);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.section-label--light { color: var(--text-light); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--space-lg);
}
.section-title--light { color: var(--white); }

/* ─── Button ─── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--charcoal);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 51, 41, 0.25);
}
.btn--full { width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════════
   GEOMETRIC PARTICLES (decorative background)
   ═══════════════════════════════════════════════════ */
.geo-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.tri {
  position: absolute;
  width: 0; height: 0;
  opacity: 0.07;
}
.tri-1 {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid var(--red);
  top: 15%; left: 8%;
  animation: drift-bounce 12s cubic-bezier(0.45, 0, 0.55, 1) infinite, pulse 4s ease-in-out infinite;
}
.tri-2 {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid var(--orange);
  top: 30%; right: 12%;
  animation: drift-zigzag 16s ease-in-out infinite, pulse 5s ease-in-out 1s infinite;
}
.tri-3 {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 26px solid var(--green);
  top: 55%; left: 5%;
  animation: drift-orbit 14s linear infinite, pulse 3.5s ease-in-out 0.5s infinite;
}
.tri-4 {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid var(--teal);
  top: 70%; right: 8%;
  animation: drift-bounce 18s cubic-bezier(0.45, 0, 0.55, 1) infinite reverse, pulse 6s ease-in-out infinite;
}
.tri-5 {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid var(--purple);
  top: 20%; left: 45%;
  animation: drift-wander 10s ease-in-out infinite, pulse 3s ease-in-out 2s infinite;
}
.tri-6 {
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 30px solid var(--yellow);
  top: 80%; left: 30%;
  animation: drift-orbit 22s linear infinite reverse, pulse 7s ease-in-out infinite;
  opacity: 0.04;
}
.tri-7 {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 15px solid var(--red);
  top: 45%; right: 25%;
  animation: drift-wander 13s ease-in-out infinite reverse, pulse 4.5s ease-in-out 0.8s infinite;
}
.tri-8 {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--teal);
  top: 10%; right: 35%;
  animation: drift-zigzag 20s ease-in-out infinite, pulse 5.5s ease-in-out 1.5s infinite;
}

@keyframes drift-bounce {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  15% { transform: translate(40px, -20px) rotate(60deg) scale(1.2); }
  30% { transform: translate(10px, -70px) rotate(120deg); }
  50% { transform: translate(-30px, -50px) rotate(200deg) scale(0.8); }
  70% { transform: translate(-50px, -10px) rotate(280deg); }
  85% { transform: translate(-20px, 20px) rotate(330deg) scale(1.1); }
}
@keyframes drift-zigzag {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(50px, -30px) rotate(-45deg); }
  40% { transform: translate(-20px, -80px) rotate(90deg) scale(1.3); }
  60% { transform: translate(-60px, -40px) rotate(-90deg) scale(0.7); }
  80% { transform: translate(30px, 10px) rotate(45deg); }
}
@keyframes drift-orbit {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(60px, -40px) rotate(90deg) scale(1.15); }
  50% { transform: translate(0, -80px) rotate(180deg); }
  75% { transform: translate(-60px, -40px) rotate(270deg) scale(0.85); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes drift-wander {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  12% { transform: translate(25px, -15px) rotate(30deg) scale(1.2); }
  28% { transform: translate(45px, -55px) rotate(-20deg) scale(0.8); }
  42% { transform: translate(10px, -90px) rotate(150deg) scale(1.3); }
  58% { transform: translate(-40px, -70px) rotate(-60deg) scale(0.7); }
  72% { transform: translate(-55px, -25px) rotate(120deg) scale(1.1); }
  88% { transform: translate(-20px, 10px) rotate(-30deg) scale(0.9); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.07; }
  50% { opacity: 0.14; }
}

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav--solid {
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav--hidden {
  transform: translateY(-100%);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav__logo:hover { opacity: 0.7; }
.nav__logo img {
  height: 56px;
  width: auto;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.7rem;
  color: #434344;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-stretch: condensed;
  transform: scaleX(0.85);
  transform-origin: left center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-family: var(--font-trade);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--red); }

.nav__cta {
  background: var(--charcoal) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: background 0.3s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--red) !important;
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: var(--space-xl) 0 var(--space-lg);
  overflow: hidden;
}
.hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}
.hero__label {
  font-family: var(--font-trade);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.hero__accent {
  background: linear-gradient(135deg, var(--red), var(--orange), var(--yellow), var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}
.hero__geo {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 500px;
  z-index: 1;
  opacity: 0.5;
}
.hero__crystal {
  width: 100%;
  height: auto;
  animation: crystal-spin 60s linear infinite;
}
@keyframes crystal-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-light), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services {
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
  background: var(--white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  padding: var(--space-lg);
  background: var(--smoke);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  background: var(--charcoal);
  color: var(--white);
}
.service-card:hover .service-card__desc { color: rgba(255,255,255,0.7); }
.service-card:hover .service-card__tags li {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}
.service-card:hover .service-card__icon { color: var(--red); }

.service-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-md);
  color: var(--charcoal);
  transition: color 0.5s;
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
}
.service-card__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  transition: color 0.5s;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-card__tags li {
  font-family: var(--font-trade);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--text-muted);
  transition: all 0.5s;
}

/* ═══════════════════════════════════════════════════
   GEOMETRIC DIVIDER
   ═══════════════════════════════════════════════════ */
.geo-divider {
  padding: var(--space-md) 0;
  overflow: hidden;
  background: var(--white);
  position: relative;
  z-index: 1;
}
.geo-divider__strip {
  height: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  background:
    linear-gradient( 60deg, var(--red)    8px, transparent 0) 0 0 / 16px 20px,
    linear-gradient(-60deg, var(--orange) 8px, transparent 0) 0 0 / 16px 20px,
    linear-gradient( 60deg, transparent  12px, var(--yellow) 0, var(--yellow) 14px, transparent 0) 0 0 / 16px 20px,
    linear-gradient(-60deg, transparent  12px, var(--green)  0, var(--green)  14px, transparent 0) 0 0 / 16px 20px;
  opacity: 0.2;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.about {
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
}
.about__bio {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}
.about__bio strong {
  color: var(--text);
  font-weight: 400;
  font-family: var(--font-trade);
}
.about__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat__label {
  font-family: var(--font-trade);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

/* About visual — geometric mosaic inspired by the logo */
.about__mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  aspect-ratio: 1;
  max-width: 360px;
  margin-left: auto;
}
.mosaic-tile {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mosaic-tile:hover { transform: scale(1.08) rotate(5deg); }
.mosaic-tile--red      { background: var(--red);     opacity: 0.8; }
.mosaic-tile--orange   { background: var(--orange);  opacity: 0.7; }
.mosaic-tile--yellow   { background: var(--yellow);  opacity: 0.6; }
.mosaic-tile--green    { background: var(--green);   opacity: 0.7; }
.mosaic-tile--teal     { background: var(--teal);    opacity: 0.8; }
.mosaic-tile--purple   { background: var(--purple);  opacity: 0.6; }
.mosaic-tile--charcoal { background: var(--charcoal); opacity: 0.15; }
.mosaic-tile--light    { background: var(--text-light); opacity: 0.1; }
.mosaic-tile--red-2    { background: var(--red);     opacity: 0.3; }

/* ═══════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════ */
.process {
  padding: var(--space-2xl) 0;
  background: var(--smoke);
  position: relative;
  z-index: 1;
}
.process__timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process__step {
  flex: 1;
  padding: var(--space-lg) var(--space-md);
  position: relative;
}
.process__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.process__step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}
.process__step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.process__connector {
  width: 40px;
  height: 1px;
  background: rgba(0,0,0,0.12);
  align-self: center;
  margin-top: 2rem;
  flex-shrink: 0;
  position: relative;
}
.process__connector::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 6px solid rgba(0,0,0,0.12);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  z-index: 1;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact__detail-label {
  display: block;
  font-family: var(--font-trade);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.2rem;
}
.contact__detail a {
  color: var(--white);
  transition: color 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
}
.contact__detail a:hover { color: var(--red); border-color: var(--red); }
.contact__detail span { color: rgba(255,255,255,0.7); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-group label {
  display: block;
  font-family: var(--font-trade);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  padding: var(--space-lg) 0;
  background: #1a1a1a;
  position: relative;
  z-index: 1;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__logo {
  height: 32px;
  width: auto;
  opacity: 0.85;
}
.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.footer__tagline {
  font-family: var(--font-trade);
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer__links {
  display: flex;
  gap: var(--space-md);
}
.footer__links a {
  font-family: var(--font-trade);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--white); }
.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; gap: 2px; }
  .about__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .about__mosaic { max-width: 280px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; }
  .process__timeline { flex-direction: column; }
  .process__connector {
    width: 1px;
    height: 30px;
    margin: 0 0 0 var(--space-md);
  }
  .process__connector::after {
    right: auto;
    bottom: -2px;
    top: auto;
    left: -3px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 6px solid rgba(0,0,0,0.12);
  }
  .hero__geo { display: none; }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-lg);
    gap: var(--space-md);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav__links.open { right: 0; }
  .nav__cta { margin-top: var(--space-sm); }

  .hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  .about__stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__brand { flex-direction: column; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-sm); }
  .service-card { padding: var(--space-md); }
  .hero__title { font-size: 2rem; }
}
