*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --white: #f8f8f6;
  --pure-white: #ffffff;
  --gray: #666;
  --light: #ebebeb;
  --border: rgba(0,0,0,0.1);
  --border-w: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  cursor: none;
}

body.menu-open { overflow: hidden; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--black); }
::selection { background: var(--black); color: var(--white); }

/* ── CURSOR ── */
#cursor-ring {
  position: fixed; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--black); pointer-events: none; z-index: 999999;
  top: -20px; left: -20px;
  transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s, background 0.3s, border-color 0.3s;
}
#cursor-dot {
  position: fixed; width: 4px; height: 4px; border-radius: 50%;
  background: var(--black); pointer-events: none; z-index: 999999;
  top: -2px; left: -2px;
}
#cursor-ring.hover { width: 64px; height: 64px; top: -32px; left: -32px; background: rgba(0,0,0,0.06); }

/* ── PROGRESS ── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 1px;
  background: var(--black); z-index: 99999; width: 0%;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; background: var(--black);
  z-index: 99000; display: flex; align-items: center; justify-content: center;
  transition: opacity 1s ease, visibility 1s ease;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.pre-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -4px;
  animation: preLogoIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
@keyframes preLogoIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.pre-line {
  width: clamp(180px, 30vw, 320px); height: 1px;
  background: rgba(255,255,255,0.15); overflow: hidden;
}
.pre-line-fill { height: 100%; width: 0; background: var(--white); transition: width 0.1s linear; }
.pre-pct {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.3); letter-spacing: 3px;
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 5%;
  transition: padding 0.3s, background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  padding: 14px 5%;
  background: rgba(10,10,10,0.95);
  border-color: var(--border-w);
  backdrop-filter: blur(12px);
}
.nav-logo img { height: 26px; width: auto; display: block; }
.nav-center {
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-tagline {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; }
.nav-menu-btn {
  display: flex; align-items: center; gap: 12px;
  background: none; border: none; cursor: none;
  color: var(--white); padding: 8px 0;
}
.menu-label {
  font-family: 'DM Mono', monospace; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  transition: opacity 0.3s;
}
.menu-icon { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.menu-icon span {
  display: block; height: 1px; background: var(--white);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.2s, width 0.3s;
  transform-origin: right;
}
.menu-icon span:nth-child(2) { width: 16px; margin-left: auto; }
.nav-menu-btn.active .menu-icon span:nth-child(1) { transform: rotate(-45deg) translateY(4px); }
.nav-menu-btn.active .menu-icon span:nth-child(2) { transform: rotate(45deg) translateY(-3px); width: 24px; }

/* ── FULLSCREEN MENU ── */
.fs-menu {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--black);
  display: flex; align-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s cubic-bezier(0.76,0,0.24,1);
}
.fs-menu.open { clip-path: inset(0 0 0% 0); }
.fs-menu-inner {
  width: 100%; padding: 120px 5% 60px;
  display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: end;
}
.fs-menu-links { display: flex; flex-direction: column; gap: 0; }
.fs-link {
  display: flex; align-items: baseline; gap: 24px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 700;
  color: rgba(255,255,255,0.15); text-decoration: none;
  line-height: 1.2;
  transition: color 0.3s, letter-spacing 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}
.fs-link:hover { color: var(--white); letter-spacing: -1px; }
.fs-num {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: rgba(255,255,255,0.2); letter-spacing: 2px;
}
.fs-menu-meta { display: flex; flex-direction: column; gap: 32px; }
.fs-meta-item { display: flex; flex-direction: column; gap: 6px; }
.fs-meta-label { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.25); letter-spacing: 3px; text-transform: uppercase; }
.fs-meta-item a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.fs-meta-item a:hover { color: var(--white); }

/* ── HERO ── */
#hero {
  min-height: 100vh; background: var(--black);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 5% 80px; position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 3.2s both;
}
.dot-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -3px;
}
.hero-title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.45); }
.hero-title-outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.5);
  color: transparent;
}
.hero-title .hero-title-outline { display: block; }
.hero-title, .hero-eyebrow { animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 3s both; }
.hero-desc-block { animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 3.1s both; }
.hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.45);
  line-height: 1.8; max-width: 380px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--white); color: var(--black);
  padding: 16px 32px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #e8e8e6; transform: translateY(-2px); }
.btn-link {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: rgba(255,255,255,0.4); text-decoration: none; letter-spacing: 1px;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--white); }
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px; padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 3.2s both;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -2px;
}
.hero-stat .stat-plus { font-size: 24px; color: rgba(255,255,255,0.3); }
.hero-stat p { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }
.hero-scroll {
  position: absolute; bottom: 40px; right: 5%;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: fadeUp 1s ease 3.5s both;
}
.scroll-track {
  width: 1px; height: 60px; background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.scroll-thumb {
  position: absolute; top: 0; left: 0; right: 0;
  height: 20px; background: rgba(255,255,255,0.4);
  animation: scrollThumb 2s ease infinite;
}
@keyframes scrollThumb { 0%{top:-20px;} 100%{top:60px;} }
.hero-scroll span {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: rgba(255,255,255,0.2); letter-spacing: 3px; text-transform: uppercase;
  writing-mode: vertical-rl;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--black); border-top: 1px solid var(--border-w);
  border-bottom: 1px solid var(--border-w);
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marqueeAnim 35s linear infinite;
}
.marquee-track span {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.25); letter-spacing: 3px; text-transform: uppercase;
  padding: 0 32px; white-space: nowrap;
}
.marquee-track .sep { color: rgba(255,255,255,0.1); padding: 0 8px; }
@keyframes marqueeAnim { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ── SECTIONS ── */
section { padding: 120px 5%; }
.section-tag {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gray);
  margin-bottom: 24px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -2px;
  margin-bottom: 80px;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--gray); }
.section-header { margin-bottom: 80px; }
.section-header.split { display: flex; justify-content: space-between; align-items: flex-end; }
.btn-outline {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--black); color: var(--black); text-decoration: none;
  padding: 12px 24px; transition: background 0.2s, color 0.2s;
  white-space: nowrap; align-self: flex-end; margin-bottom: 8px;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--light);
}
.svc-card {
  background: var(--white); padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--black);
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.svc-card:hover { background: var(--black); transform: translateY(-4px); }
.svc-card:hover::after { width: 100%; background: var(--white); }
.svc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.svc-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gray); letter-spacing: 2px; transition: color 0.3s; }
.svc-card:hover .svc-num { color: rgba(255,255,255,0.3); }
.svc-arrow { font-size: 20px; color: var(--light); transition: color 0.3s, transform 0.3s; }
.svc-card:hover .svc-arrow { color: var(--white); transform: translate(4px, -4px); }
.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; letter-spacing: -0.5px;
  margin-bottom: 16px; transition: color 0.3s;
}
.svc-card:hover .svc-name { color: var(--white); }
.svc-desc { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 32px; transition: color 0.3s; }
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.4); }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tags span {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 1px; padding: 4px 10px;
  border: 1px solid var(--light); color: var(--gray);
  transition: border-color 0.3s, color 0.3s;
}
.svc-card:hover .svc-tags span { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.4); }

/* ── PORTFOLIO ── */
#portfolio { background: var(--black); }
#portfolio .section-tag { color: rgba(255,255,255,0.3); }
#portfolio .section-title { color: var(--white); }
#portfolio .section-title em { color: rgba(255,255,255,0.25); }
#portfolio .btn-outline { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
#portfolio .btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.portfolio-list { display: flex; flex-direction: column; }
.port-item {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
  padding: 40px 0; position: relative;
  cursor: none;
}
.port-divider {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,0.06);
  transform-origin: left;
  transition: background 0.4s;
}
.port-item:hover .port-divider { background: rgba(255,255,255,0.2); }
.port-left { display: flex; align-items: flex-start; gap: 32px; }
.port-num {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: rgba(255,255,255,0.15); letter-spacing: 2px; padding-top: 4px;
}
.port-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700; color: rgba(255,255,255,0.5);
  letter-spacing: -1px; margin-bottom: 8px;
  transition: color 0.3s;
}
.port-item:hover .port-info h3 { color: var(--white); }
.port-info p { font-size: 14px; color: rgba(255,255,255,0.25); line-height: 1.6; max-width: 400px; transition: color 0.3s; }
.port-item:hover .port-info p { color: rgba(255,255,255,0.5); }
.port-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.port-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.port-tags span {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 1px; padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.25);
}
.port-link {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.2); text-decoration: none; letter-spacing: 1px;
  transition: color 0.3s;
}
.port-item:hover .port-link { color: var(--white); }

/* ── PROCESS ── */
#process { background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--light);
}
.process-step {
  background: var(--white); padding: 48px 32px;
  transition: background 0.3s, transform 0.3s;
}
.process-step:hover { background: var(--black); transform: translateY(-4px); }
.step-num {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: var(--light); letter-spacing: 2px; margin-bottom: 48px;
  transition: color 0.3s;
}
.process-step:hover .step-num { color: rgba(255,255,255,0.15); }
.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; margin-bottom: 12px;
  transition: color 0.3s;
}
.process-step:hover .step-content h3 { color: var(--white); }
.step-content p { font-size: 14px; color: var(--gray); line-height: 1.75; transition: color 0.3s; }
.process-step:hover .step-content p { color: rgba(255,255,255,0.4); }

/* ── TEAM ── */
#team { background: var(--white); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--light);
}
.team-card { background: var(--white); overflow: hidden; }
.team-img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.team-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%);
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.5s;
}
.team-card:hover .team-img-wrap img { transform: scale(1.05); filter: grayscale(0%); }
.team-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.6);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: opacity 0.4s;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-socials { display: flex; gap: 8px; }
.team-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.team-socials a:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.team-info { padding: 28px 28px 32px; border-top: 1px solid var(--light); }
.team-role-tag {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: var(--gray); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 4px;
}
.team-role { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.team-skills { display: flex; flex-wrap: wrap; gap: 6px; }
.team-skills span {
  font-family: 'DM Mono', monospace; font-size: 10px;
  padding: 4px 10px; border: 1px solid var(--light); color: var(--gray); letter-spacing: 0.5px;
}

/* ── CLIENTS ── */
#clients { 
  background: var(--black); 
  padding: 80px 5%; 
}
#clients .section-tag { color: rgba(255,255,255,0.3); }
#clients .section-title { color: var(--white); margin-bottom: 48px; }
#clients .section-title em { color: rgba(255,255,255,0.25); }

/* Responsive Grid for client logos */
.clients-grid { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.client-logo {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 12px;
  opacity: 0.6; /* Starts slightly dimmed */
  transition: all 0.3s ease;
  cursor: pointer;
}

.client-logo:hover { 
  opacity: 1; 
  transform: translateY(-5px); /* Subtle lift on hover */
}

.client-logo img { 
  max-width: 80px; 
  max-height: 50px; 
  object-fit: contain; 
  filter: grayscale(100%); 
  transition: filter 0.3s ease; 
}

/* Logos reveal their true colors when hovered */
.client-logo:hover img {
  filter: grayscale(0%);
}

.client-logo span { 
  font-family: 'DM Mono', monospace; 
  font-size: 10px; 
  color: rgba(255,255,255,0.4); 
  letter-spacing: 1px; 
  transition: color 0.3s ease;
}

.client-logo:hover span {
  color: rgba(255,255,255,0.8);
}

/* ── ABOUT ── */
#about { background: var(--white); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400; line-height: 1.4; letter-spacing: -1px;
  color: var(--black); margin: 24px 0 32px; font-style: normal;
}
.about-quote em { font-style: italic; color: var(--gray); }
.about-sub { font-size: 15px; color: var(--gray); line-height: 1.8; }
.about-values { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.value-item {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--light);
}
.value-item:first-child { border-top: 1px solid var(--light); }
.value-num { font-family: 'DM Mono', monospace; color: var(--light); font-size: 18px; flex-shrink: 0; }
.value-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.value-item p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── CTA ── */
#cta { background: var(--black); text-align: center; padding: 160px 5%; }
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-tag {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.25); display: block; margin-bottom: 32px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -3px; line-height: 1; margin-bottom: 60px;
}
.cta-title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.4); }
.cta-btn {
  font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  background: var(--white); color: var(--black); text-decoration: none;
  padding: 20px 52px; display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover { background: #e8e8e6; transform: translateY(-3px); }

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; }
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-detail {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 0; border-bottom: 1px solid var(--light);
}
.cd-label { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; }
.cd-val { font-size: 15px; font-weight: 500; color: var(--black); text-decoration: none; transition: color 0.2s; }
a.cd-val:hover { color: var(--gray); }
.contact-map { margin-top: 32px; position: relative; overflow: hidden; }
.contact-map iframe { width: 100%; height: 180px; border: 0; display: block; }
.map-ext {
  display: block; margin-top: 8px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: var(--gray); text-decoration: none; letter-spacing: 1px;
  transition: color 0.2s;
}
.map-ext:hover { color: var(--black); }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.ff {
  border-bottom: 1px solid var(--light); position: relative;
  transition: border-color 0.3s;
}
.ff:focus-within { border-color: var(--black); }
.ff::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--black);
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}
.ff:focus-within::after { width: 100%; }
.ff label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: var(--gray); letter-spacing: 2px; text-transform: uppercase;
  display: block; padding: 20px 0 8px;
}
.ff input, .ff select, .ff textarea {
  width: 100%; background: transparent; border: none; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  color: var(--black); padding: 0 0 20px; -webkit-appearance: none;
}
.ff textarea { resize: none; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.form-submit {
  margin-top: 40px; display: flex;
  align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.form-submit button {
  font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  background: var(--black); color: var(--white); border: none;
  padding: 16px 40px; cursor: none; transition: background 0.2s;
}
.form-submit button:hover { background: #222; }
.form-submit span { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gray); letter-spacing: 1px; }

/* ── FOOTER ── */
footer { background: var(--black); padding: 48px 5%; }
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 32px; border-bottom: 1px solid var(--border-w); flex-wrap: wrap; gap: 24px;
}
.footer-logo img { height: 24px; width: auto; display: block; opacity: 0.6; transition: opacity 0.3s; }
.footer-logo:hover img { opacity: 1; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.3); text-decoration: none; letter-spacing: 1px; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 1px; }

/* ── WHATSAPP ── */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s; text-decoration: none;
}
.wa-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-btn::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; animation: waPulse 2s ease-out infinite; z-index: -1;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:0.6;} 100%{transform:scale(1.8);opacity:0;} }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-title { font-size: clamp(3rem, 10vw, 6rem); }
  .nav-center { display: none; }
  .fs-menu-inner { grid-template-columns: 1fr; gap: 48px; }
  .fs-menu-meta { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 60px; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .section-header.split { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 600px) {
  section { padding: 80px 5%; }
  #testimonials { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .port-item { grid-template-columns: 1fr; gap: 20px; }
  .port-right { align-items: flex-start; flex-direction: row; justify-content: space-between; align-items: center; }
  .hero-stats { gap: 28px; }
  .section-title { margin-bottom: 48px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .cta-title { letter-spacing: -2px; }
  .fs-link { font-size: clamp(2rem, 8vw, 3rem); }
  .testi-card { width: 290px; padding: 24px; }
  .testi-track-wrap::before,
  .testi-track-wrap::after { width: 48px; }
}

@media (max-width: 768px) {
  body, a, button { cursor: auto !important; }
  #cursor-ring, #cursor-dot { display: none !important; }
}