/* ═══════════════════════════════════════════════════
   ITERATORI — Global Design System
   ═══════════════════════════════════════════════════ */

:root {
  --brand:        #1F54B9;
  --brand-light:  #9EC1FD;
  --brand-bright: #c2d8ff;
  --brand-dim:    rgba(31, 84, 185, 0.4);
  --black:       #050e1c;
  --dark:        #091B36;
  --dark-2:      #0d254c;
  --dark-3:      #123164;
  --border:      rgba(158, 193, 253, 0.15);
  --text:        #FFFFFF;
  --text-muted:  #D6D6D6;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-head:   'Space Grotesk', 'Inter', sans-serif;
  --nav-h:       70px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes brandShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── Utilities ─── */
.accent  { color: var(--brand-light); }
.italic { font-style: italic; }


/* ═══════════════════════════════════════════════════
   STAGING BANNER — DELETE THIS ENTIRE BLOCK TO REMOVE
   ═══════════════════════════════════════════════════ */
.staging-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: 38px;
  background: linear-gradient(90deg, #091b36 0%, #1f54b9 50%, #091b36 100%);
  border-bottom: 1px solid rgba(158, 193, 253, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-shadow: 0 2px 12px rgba(9, 27, 84, 0.5);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.staging-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.staging-banner-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.staging-icon {
  font-size: 14px;
  color: rgba(158, 193, 253, 0.9);
  flex-shrink: 0;
  animation: stagingPulse 2.4s ease-in-out infinite;
}

@keyframes stagingPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

.staging-text {
  font-family: 'Inter', monospace, sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.5px;
  color: rgba(214, 214, 214, 0.85);
}

.staging-text strong {
  color: #9EC1FD;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 10.5px;
}

.staging-dismiss {
  background: none;
  border: 1px solid rgba(158, 193, 253, 0.3);
  color: rgba(158, 193, 253, 0.7);
  font-size: 12px;
  line-height: 1;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.staging-dismiss:hover {
  background: rgba(31, 84, 185, 0.15);
  border-color: rgba(158, 193, 253, 0.6);
  color: #9EC1FD;
}
/* END STAGING BANNER STYLES */


/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: var(--banner-h, 38px);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(5, 14, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition), top var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 14, 28, 0.97);
  border-bottom-color: rgba(31, 84, 185, 0.25);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.8; }

.nav-logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--text);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  margin-left: auto;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-light);
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after { opacity: 1; }

/* CTA Button */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid var(--brand);
  color: var(--brand-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 3px;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: rgba(200, 150, 30, 0.12);
  box-shadow: 0 0 20px rgba(200, 150, 30, 0.2);
}
.nav-cta-arrow {
  font-size: 14px;
  transition: transform var(--transition);
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}


/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--banner-h, 38px) + var(--nav-h));
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle noise/grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 70% at 65% 50%, rgba(31, 84, 185, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 10% 80%, rgba(31, 84, 185, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
}

/* Content side */
.hero-content {
  z-index: 2;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  margin-bottom: 28px;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.hero-subtext {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-subtext .gold {
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(200, 150, 30, 0.1);
  border: 1px solid var(--brand);
  color: var(--brand-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 3px;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn-primary:hover {
  background: rgba(200, 150, 30, 0.2);
  box-shadow: 0 0 30px rgba(200, 150, 30, 0.25);
  color: var(--brand-bright);
}
.btn-primary span {
  font-size: 15px;
  transition: transform var(--transition);
}
.btn-primary:hover span { transform: translateX(4px); }

/* Ghost Button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: 3px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

/* Visual side */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.2s 0.3s forwards;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 60px rgba(31, 84, 185, 0.35)) drop-shadow(0 0 120px rgba(31, 84, 185, 0.15));
  animation: floatImage 6s ease-in-out infinite;
}

.hero-image-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(ellipse at center, rgba(31, 84, 185, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(30px);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}


/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* Intro column */
.services-intro {
  padding-right: 24px;
}

.services-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--brand);
  margin-bottom: 18px;
}

.services-description {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.services-description .gold {
  font-weight: 400;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--brand);
  transition: gap var(--transition), opacity var(--transition);
}
.explore-link:hover { gap: 16px; opacity: 0.85; }

/* Cards row */
.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.service-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
  cursor: default;
}
.service-card:last-child { border-right: none; }

.service-card:hover {
  background: rgba(200, 150, 30, 0.04);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1); }

.service-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
}

.service-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 56px;
}

.trust-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--brand);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-logo {
  opacity: 0.55;
  transition: opacity var(--transition), filter var(--transition);
  cursor: default;
}
.trust-logo:hover {
  opacity: 0.85;
  filter: brightness(1.3);
}

.trust-logo svg {
  height: 28px;
  width: auto;
}



/* ═══════════════════════════════════════════════════
   DROPDOWN MENU
   ═══════════════════════════════════════════════════ */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  min-width: 200px;
  border-radius: 4px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}

.dropdown-item:hover {
  color: var(--brand-light);
  background: rgba(200, 150, 30, 0.08);
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 8px;
  width: 7px;
  height: 4.5px;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  vertical-align: middle;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE (Updated with Mobile Menu)
   ═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px 32px;
  }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-divider { margin: 0 auto 28px; }
  .hero-actions { justify-content: center; }

  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }

  /* Mobile open state */
  .nav-links.nav-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: calc(var(--nav-h) + var(--banner-h, 0px));
    left: 0; right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 32px;
    border-bottom: 1px solid var(--border);
    gap: 28px;
    z-index: 999;
    max-height: calc(100vh - var(--nav-h) - var(--banner-h, 0px));
    overflow-y: auto;
  }

  .nav-links.nav-open .nav-link {
    font-size: 13px;
    letter-spacing: 3px;
    padding-bottom: 0;
  }

  .nav-links.nav-open .nav-link::after {
    display: none;
  }

  /* Mobile dropdown handling */
  .nav-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding: 12px 0 0 16px;
    width: 100%;
    display: none; /* Toggle via JS */
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-item {
    padding: 10px 0;
    font-size: 12px;
  }
}

@media (max-width: 700px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .service-card:last-child { border-bottom: none; }

  .trust-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .trust-logos { justify-content: center; gap: 24px; }
}

@media (max-width: 480px) {
  .nav-container { padding: 0 20px; }
  .hero-container { padding: 40px 20px 28px; }
  .services-container { padding: 0 20px; }
  .trust-container { padding: 0 20px; }
  .hero-actions { gap: 12px; }
  .btn-primary, .btn-ghost { font-size: 11px; padding: 12px 20px; }
}

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(200, 150, 30, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.contact-header {
  margin-bottom: 80px;
}

.contact-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-light);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 4px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(200, 150, 30, 0.1);
}

.btn-submit {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--brand);
  border: none;
  border-radius: 4px;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  position: relative;
  min-width: 180px;
}

.btn-submit:hover {
  background: var(--brand-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 150, 30, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit.loading {
  pointer-events: none;
  color: transparent;
}

.btn-loader {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  border-radius: 50%;
  display: none;
  animation: spin 0.8s linear infinite;
}

.btn-submit.loading .btn-loader {
  display: block;
}

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

.form-message {
  margin-top: 24px;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 6px;
  display: none; /* Keep hidden until class is added */
  font-weight: 500;
  text-align: center;
  animation: fadeInDown 0.4s ease forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-message.success {
  display: block;
  background: rgba(40, 167, 69, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.form-message.error {
  display: block;
  background: rgba(220, 53, 69, 0.15);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.contact-info {
  display: grid;
  gap: 48px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.info-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

a.info-value:hover {
  color: var(--brand-light);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--brand-light);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--brand-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 10px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-top {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}


/* ═══════════════════════════════════════════════════
   WORK / PORTFOLIO PAGE
   ═══════════════════════════════════════════════════ */

.work-page {
  padding-top: calc(var(--banner-h, 38px) + var(--nav-h));
  min-height: 100vh;
}

.work-hero {
  padding: 80px 32px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at 50% 100%, rgba(200, 150, 30, 0.08), transparent 70%);
}

.work-hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}

.work-hero-subtitle {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--brand);
  text-transform: uppercase;
}

/* Grid Layout */
.work-grid-section {
  padding: 80px 32px 120px;
}

.work-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Individual Card */
.work-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid var(--border);
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 150, 30, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 150, 30, 0.1);
}

.work-card-image-link {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.work-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.work-card:hover .work-card-img {
  transform: scale(1.05);
}

/* Overlay on Hover */
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, transparent 60%);
  opacity: 0.6;
  transition: opacity 0.4s;
}

.work-card:hover .work-card-overlay {
  opacity: 0.9;
}

/* Content */
.work-card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.work-card-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.work-card-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.work-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #fff;
  transition: gap 0.3s, color 0.3s;
}

.work-card-link span {
  font-size: 14px;
  transition: transform 0.3s;
}

.work-card-link:hover {
  color: var(--brand-light);
  gap: 12px;
}

.work-card-link:hover span {
  transform: translateX(4px);
}

/* Responsive Grid */
@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .work-hero {
    padding: 60px 24px 40px;
  }
  .work-grid-section {
    padding: 40px 24px 80px;
  }
  .work-card-content {
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════════════
   ABOUT / FOUNDER STORY
   ═══════════════════════════════════════════════════ */

.about {
  background: var(--black);
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(200, 150, 30, 0.05), transparent 70%);
  pointer-events: none;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.8) contrast(1.1);
  transition: transform 0.8s ease;
}

.about-visual:hover .about-img {
  transform: scale(1.03);
}

.about-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(200, 150, 30, 0.1), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

.about-content {
  position: relative;
}

.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--brand);
  margin-bottom: 24px;
  display: block;
}

.about-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.about-text {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 24px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  font-weight: 500;
  color: var(--text);
}

.about-quote {
  margin-top: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--brand-dim);
  font-style: italic;
  color: var(--brand-light);
  font-size: 17px;
}

@media (max-width: 1000px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-visual {
    max-width: 600px;
    margin: 0 auto;
  }
  .about-content {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 60px 0;
  }
  .about-container {
    padding: 0 24px;
  }
}
