/* ============================================================
   VITALÉ — styles.css
   ============================================================ */

/* ── TOKENS ── */
:root {
  --sand:         #F2EBE0;
  --sand-dark:    #E8DDD0;
  --bronze:       #A07840;
  --bronze-light: #C49A5A;
  --bronze-pale:  #D4B896;
  --noir:         #1A1410;
  --noir-soft:    #2E2720;
  --text-muted:   #7A6E65;
  --rule:         rgba(160, 120, 64, 0.25);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--sand);
  color: var(--noir);
  font-family: 'Tenor Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible        { opacity: 1; transform: translateY(0); }
.reveal-delay-1        { transition-delay: 0.15s; }
.reveal-delay-2        { transition-delay: 0.30s; }
.reveal-delay-3        { transition-delay: 0.45s; }

/* ── SHARED SECTION ── */
section { padding: 120px 60px; }

.section-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--bronze);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--noir);
}
.section-title em { font-style: italic; color: var(--bronze); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 38px;
  background: var(--bronze);
  color: var(--sand);
  font-family: 'Tenor Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--noir); transform: translateY(-2px); }

.btn-ghost {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.btn-ghost::after       { content: '→'; font-size: 14px; transition: transform 0.3s; }
.btn-ghost:hover        { color: var(--bronze); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  background: transparent;
  transition: background 0.5s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(242, 235, 224, 0.92);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: 'Bodoni Moda', serif;
  font-size: 26px;
  font-weight: 900;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  color: var(--noir);
  text-decoration: none;
  line-height: 1;
}
.nav-logo .accent { color: var(--bronze); }
.nav-links        { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--noir-soft);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--bronze); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 60px 80px;
  position: relative;
  z-index: 2;
}
.hero-wordmark {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--noir);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.1s ease 0.1s forwards;
}
.hero-wordmark .wm-accent { color: var(--bronze); }

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--noir);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.1s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--bronze); }

.hero-subtitle {
  margin-top: 32px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 380px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.8s forwards;
}
.hero-cta {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 1.0s forwards;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 60px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll-hint::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--bronze-pale);
}

/* Hero right panel */
.hero-right       { position: relative; overflow: hidden; }
.hero-image-wrap  { position: absolute; inset: 0; background: var(--sand-dark); overflow: hidden; }
.hero-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(160,120,64,0.12) 0%, transparent 60%);
}
.hero-geo         { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.geo-circle-large {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--bronze-pale) 0%, var(--sand-dark) 100%);
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  opacity: 0.5;
}
.geo-circle-small {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid var(--bronze-light);
  bottom: 18%; right: 12%;
  opacity: 0.4;
}
.geo-line-v {
  position: absolute;
  width: 1px; height: 40%;
  background: var(--bronze);
  opacity: 0.2;
  left: 50%; bottom: 0;
}
.hero-stat-block {
  position: absolute;
  bottom: 80px; left: 48px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300;
  color: var(--bronze); line-height: 1;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 6px;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--noir);
  color: var(--bronze-pale);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner  { display: inline-flex; animation: marquee 28s linear infinite; }
.marquee-item   { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; padding: 0 48px; }
.marquee-dot    { color: var(--bronze); padding: 0 4px; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--sand-dark); position: relative; overflow: hidden; }
#services::before {
  content: 'SERVICES';
  position: absolute; top: 40px; right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 300;
  color: rgba(160,120,64,0.05);
  letter-spacing: 0.1em; pointer-events: none; white-space: nowrap;
}
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 80px;
}
.services-intro { font-size: 14px; line-height: 2; color: var(--text-muted); max-width: 400px; align-self: end; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); }
.service-card {
  background: var(--sand-dark);
  padding: 52px 40px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--bronze);
  transition: width 0.5s ease;
}
.service-card:hover           { background: var(--sand); }
.service-card:hover::after    { width: 100%; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 300;
  color: var(--bronze-pale); letter-spacing: 0.1em; margin-bottom: 32px;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300;
  line-height: 1.2; color: var(--noir); margin-bottom: 20px;
}
.service-desc { font-size: 13px; line-height: 1.8; color: var(--text-muted); }

/* ============================================================
   SECTORS
   ============================================================ */
#sectors { background: var(--noir); padding: 120px 60px; position: relative; overflow: hidden; }
.sectors-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 100px; align-items: start; }
.sectors-left .section-label        { color: var(--bronze-pale); }
.sectors-left .section-label::before{ background: var(--bronze-pale); }
.sectors-left .section-title        { color: var(--sand); }
.sectors-note { font-size: 13px; line-height: 1.9; color: rgba(242,235,224,0.45); margin-top: 24px; }

.sectors-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.05); }
.sector-item  { background: var(--noir); padding: 32px 28px; transition: background 0.3s; }
.sector-item:hover { background: var(--noir-soft); }
.sector-icon  { font-size: 20px; margin-bottom: 14px; opacity: 0.7; }
.sector-name  { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--sand); margin-bottom: 8px; }
.sector-desc  { font-size: 11px; letter-spacing: 0.05em; color: rgba(242,235,224,0.35); line-height: 1.6; }

.sectors-disclaimer {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(242,235,224,0.25);
  display: flex; align-items: center; gap: 16px;
}
.sectors-disclaimer::before { content: ''; display: block; width: 20px; height: 1px; background: var(--bronze); flex-shrink: 0; }

/* ============================================================
   PROCESS
   ============================================================ */
#process { background: var(--sand-dark); padding: 120px 60px; position: relative; overflow: hidden; }
#process::before {
  content: 'PROCESS';
  position: absolute; bottom: 20px; left: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 300;
  color: rgba(160,120,64,0.04);
  letter-spacing: 0.1em; pointer-events: none; white-space: nowrap;
}
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.process-intro  { font-size: 14px; line-height: 2; color: var(--text-muted); max-width: 400px; align-self: end; }

.process-steps  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); }
.process-step   { background: var(--sand-dark); padding: 44px 32px; position: relative; transition: background 0.3s; }
.process-step:hover { background: var(--sand); }
.process-step-num  {
  font-family: 'Bodoni Moda', serif;
  font-size: 52px; font-weight: 900;
  color: rgba(160,120,64,0.12); line-height: 1; margin-bottom: 20px;
}
.process-step-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--noir); margin-bottom: 14px; }
.process-step-desc { font-size: 12px; line-height: 1.8; color: var(--text-muted); }

.process-confidentiality {
  margin-top: 60px; padding: 40px 48px;
  border: 1px solid var(--rule);
  display: flex; align-items: center; gap: 40px;
}
.process-conf-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-style: italic; font-weight: 300;
  color: var(--bronze-pale); flex-shrink: 0; line-height: 1;
}
.process-conf-text { font-size: 13px; line-height: 1.9; color: var(--text-muted); }
.process-conf-text strong {
  color: var(--noir); font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; display: block; margin-bottom: 6px;
}

/* ============================================================
   WORK / CASE STUDIES
   ============================================================ */
#work { background: var(--sand); padding: 140px 60px; position: relative; overflow: hidden; }
.work-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.work-intro  { font-size: 14px; line-height: 2; color: var(--text-muted); max-width: 400px; align-self: end; }

.work-grid { display: flex; flex-direction: column; gap: 1px; background: var(--rule); }
.work-card {
  background: var(--sand);
  display: grid; grid-template-columns: 280px 1fr auto;
  gap: 60px; align-items: start;
  padding: 52px 48px;
  transition: background 0.3s;
}
.work-card:hover { background: var(--sand-dark); }

.work-sector-tag {
  display: inline-block;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--bronze); border: 1px solid var(--bronze-pale);
  padding: 4px 12px; margin-bottom: 20px;
}
.work-card-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--noir); line-height: 1.2; margin-bottom: 10px; }
.work-card-sub   { font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; }
.work-card-body  { font-size: 13px; line-height: 1.95; color: var(--text-muted); }

.work-card-stats { display: flex; flex-direction: column; gap: 24px; min-width: 140px; text-align: right; }
.work-stat-num   { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--bronze); line-height: 1; }
.work-stat-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* GITEX banner */
.gitex-banner {
  margin-top: 80px; background: var(--noir);
  padding: 52px 60px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 60px;
}
.gitex-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bronze-light); margin-bottom: 12px; }
.gitex-title   { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--sand); line-height: 1.2; }
.gitex-title em{ font-style: italic; color: var(--bronze-light); }
.gitex-detail  { font-size: 12px; line-height: 1.8; color: rgba(242,235,224,0.4); margin-top: 12px; }
.gitex-cta {
  display: inline-block; padding: 14px 36px;
  border: 1px solid rgba(196,154,90,0.4);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze-pale); text-decoration: none; white-space: nowrap;
  transition: border-color 0.3s, color 0.3s;
}
.gitex-cta:hover { border-color: var(--bronze-light); color: var(--sand); }

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
  padding: 140px 60px;
}
.about-image-col  { position: relative; }
.about-image-frame {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bronze-pale) 0%, var(--sand-dark) 60%, var(--bronze-pale) 100%);
  position: relative; overflow: hidden;
}
.about-image-frame::before {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(160,120,64,0.3); pointer-events: none; z-index: 2;
}
.about-geo-fill { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.about-circle   {
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(160,120,64,0.2) 0%, transparent 70%);
  border: 1px solid rgba(160,120,64,0.2);
}
.about-tag {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--bronze); color: var(--sand);
  padding: 28px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-style: italic; font-weight: 300; line-height: 1.4;
}
.about-content { padding-right: 20px; }
.about-body { font-size: 14px; line-height: 2; color: var(--text-muted); margin: 32px 0; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 52px; padding-top: 52px;
  border-top: 1px solid var(--rule);
}
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--bronze); line-height: 1; }
.stat-desc   { font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; margin-top: 8px; }

/* ============================================================
   TEAM
   ============================================================ */
#team { background: var(--sand); padding: 140px 60px; position: relative; overflow: hidden; }
#team::before {
  content: 'PEOPLE';
  position: absolute; top: 30px; right: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 300;
  color: rgba(160,120,64,0.04);
  letter-spacing: 0.1em; pointer-events: none; white-space: nowrap;
}
.team-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 100px; }
.team-intro  { font-size: 14px; line-height: 2; color: var(--text-muted); max-width: 420px; align-self: end; }
.team-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.team-card   { position: relative; }

.team-photo-frame {
  aspect-ratio: 3/4; background: var(--sand-dark);
  position: relative; overflow: hidden; margin-bottom: 36px;
}
.team-photo-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(26,20,16,0.3) 100%);
  z-index: 1;
}
.team-photo-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.team-photo-initials {
  font-family: 'Bodoni Moda', serif;
  font-size: 88px; font-weight: 900;
  color: rgba(160,120,64,0.14); letter-spacing: -0.02em; line-height: 1;
}
.team-card-abi .team-photo-frame  { background: linear-gradient(160deg, #E0D5C8 0%, #D4C5B0 50%, #C8B89A 100%); }
.team-card-alex .team-photo-frame { background: linear-gradient(160deg, #D8D0C8 0%, #C8BEB4 50%, #B8AFA4 100%); }

.team-geo-accent { position: absolute; border-radius: 50%; }
.team-card-abi .team-geo-accent:nth-child(1)  { width: 300px; height: 300px; background: radial-gradient(circle, rgba(160,120,64,0.18) 0%, transparent 70%); top: -60px; left: -60px; }
.team-card-abi .team-geo-accent:nth-child(2)  { width: 160px; height: 160px; border: 1px solid rgba(196,154,90,0.3); bottom: 60px; right: 40px; }
.team-card-alex .team-geo-accent:nth-child(1) { width: 260px; height: 260px; background: radial-gradient(circle, rgba(120,110,100,0.15) 0%, transparent 70%); bottom: -40px; right: -40px; }
.team-card-alex .team-geo-accent:nth-child(2) { width: 120px; height: 120px; border: 1px solid rgba(160,120,64,0.25); top: 50px; left: 50px; }

.team-name  { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; color: var(--noir); line-height: 1.15; margin-bottom: 6px; }
.team-role  { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--bronze); margin-bottom: 24px; }
.team-bio   { font-size: 13px; line-height: 1.95; color: var(--text-muted); margin-bottom: 28px; }

.team-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.team-tag {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid var(--rule); padding: 5px 14px;
  transition: border-color 0.3s, color 0.3s;
}
.team-tag:hover { border-color: var(--bronze-pale); color: var(--bronze); }

.team-linkedin {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; transition: color 0.3s;
}
.team-linkedin::before { content: ''; display: block; width: 28px; height: 1px; background: var(--bronze-pale); transition: width 0.3s, background 0.3s; }
.team-linkedin:hover           { color: var(--bronze); }
.team-linkedin:hover::before   { width: 40px; background: var(--bronze); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--noir); color: var(--sand); padding: 140px 60px; position: relative; overflow: hidden; }
#contact::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(196,154,90,0.08); pointer-events: none;
}
#contact::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(160,120,64,0.06) 0%, transparent 70%); pointer-events: none;
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; position: relative; z-index: 2; }

.contact-left .section-label        { color: var(--bronze-pale); }
.contact-left .section-label::before{ background: var(--bronze-pale); }
.contact-left .section-title        { color: var(--sand); }
.contact-body { font-size: 14px; line-height: 2; color: rgba(242,235,224,0.5); margin-top: 28px; max-width: 380px; }

.contact-details      { margin-top: 52px; display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item  { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--bronze-pale); opacity: 0.7; }
.contact-detail-value { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; color: var(--sand); }
.contact-whatsapp     { text-decoration: none; transition: color 0.3s; }
.contact-whatsapp:hover { color: var(--bronze-pale); }

.contact-right { padding-top: 8px; }
.form-group    { margin-bottom: 32px; }
.form-label    { display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,235,224,0.4); margin-bottom: 10px; }
.form-input,
.form-textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(242,235,224,0.15);
  color: var(--sand); font-family: 'Tenor Sans', sans-serif;
  font-size: 14px; padding: 10px 0; outline: none;
  transition: border-color 0.3s;
  appearance: none; -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(242,235,224,0.2); }
.form-input:focus,
.form-textarea:focus { border-bottom-color: var(--bronze-light); }
.form-textarea { resize: none; height: 100px; }
.form-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.btn-submit {
  display: inline-block; margin-top: 16px; padding: 16px 48px;
  background: var(--bronze); color: var(--sand);
  font-family: 'Tenor Sans', sans-serif; font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.btn-submit:hover { background: var(--bronze-light); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--noir-soft);
  padding: 32px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-logo { font-family: 'Bodoni Moda', serif; font-size: 24px; font-weight: 900; font-optical-sizing: auto; letter-spacing: -0.01em; color: var(--sand); line-height: 1; }
.footer-logo .accent { color: var(--bronze-light); }
.footer-copy  { font-size: 11px; letter-spacing: 0.12em; color: rgba(242,235,224,0.25); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(242,235,224,0.3); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--bronze-pale); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  nav         { padding: 24px 28px; }
  nav.scrolled{ padding: 16px 28px; }
  .nav-links  { display: none; }

  #hero                  { grid-template-columns: 1fr; min-height: auto; }
  .hero-left             { padding: 120px 28px 60px; }
  .hero-right            { height: 50vw; min-height: 280px; }

  section                { padding: 80px 28px; }

  .services-header       { grid-template-columns: 1fr; gap: 24px; }
  .services-grid         { grid-template-columns: 1fr; }

  #about                 { grid-template-columns: 1fr; gap: 60px; padding: 80px 28px; }
  .about-image-col       { max-width: 380px; }

  #team                  { padding: 80px 28px; }
  .team-header           { grid-template-columns: 1fr; gap: 24px; margin-bottom: 60px; }
  .team-grid             { grid-template-columns: 1fr; gap: 60px; }

  #sectors               { padding: 80px 28px; }
  .sectors-inner         { grid-template-columns: 1fr; gap: 48px; }
  .sectors-grid          { grid-template-columns: 1fr 1fr; }

  #process               { padding: 80px 28px; }
  .process-header        { grid-template-columns: 1fr; gap: 24px; margin-bottom: 52px; }
  .process-steps         { grid-template-columns: 1fr 1fr; }
  .process-confidentiality { flex-direction: column; gap: 20px; padding: 28px; }

  #work                  { padding: 80px 28px; }
  .work-header           { grid-template-columns: 1fr; gap: 24px; }
  .work-card             { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; }
  .work-card-stats       { flex-direction: row; text-align: left; }
  .gitex-banner          { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }

  #contact               { padding: 80px 28px; }
  .contact-inner         { grid-template-columns: 1fr; gap: 60px; }
  .form-grid             { grid-template-columns: 1fr; }

  footer                 { flex-direction: column; gap: 16px; text-align: center; padding: 24px 28px; }
  .footer-links          { flex-wrap: wrap; justify-content: center; }
}
