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

:root {
  --midnight: #0a0f1a;
  --deep: #111827;
  --slate: #1e293b;
  --steel: #334155;
  --mist: #94a3b8;
  --silver: #cbd5e1;
  --pearl: #e2e8f0;
  --ivory: #f1f5f9;
  --white: #ffffff;
  --accent: #b08d57;
  --accent-light: #d4b87c;
  --accent-dark: #8a6d3b;
  --accent-glow: rgba(176, 141, 87, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--midnight);
  color: var(--silver);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === NOISE OVERLAY === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  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)'/%3E%3C/svg%3E");
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--midnight); }
::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 3px; }

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}

nav.scrolled {
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 4%;
  border-bottom: 1px solid rgba(176, 141, 87, 0.1);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
  position: relative;
}

nav.scrolled .nav-links a {
  color: var(--mist);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--midnight); }
nav.scrolled .nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem !important;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--slate) !important;
  color: var(--slate) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--slate) !important;
  color: var(--white) !important;
}

nav.scrolled .nav-cta {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

nav.scrolled .nav-cta:hover {
  background: var(--accent) !important;
  color: var(--midnight) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--silver);
  transition: all 0.3s;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 4%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(176, 141, 87, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(30, 41, 59, 0.5) 0%, transparent 50%),
    linear-gradient(170deg, var(--midnight) 0%, #0d1320 50%, var(--midnight) 100%);
}

/* Geometric lines */
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.08;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  width: 1px;
}

.hero-lines::before {
  left: 20%;
  top: -10%;
  height: 120%;
  animation: lineFloat 20s ease-in-out infinite;
}

.hero-lines::after {
  right: 30%;
  top: -20%;
  height: 140%;
  animation: lineFloat 25s ease-in-out infinite reverse;
}

@keyframes lineFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-40px) rotate(0.5deg); }
}

.hero-image-placeholder {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--midnight) 0%, transparent 40%);
  z-index: 2;
}

.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  filter: brightness(0.8) saturate(0.5) contrast(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 52%;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  background: var(--accent);
  color: var(--midnight);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(176, 141, 87, 0.2);
}

.btn-secondary {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mist);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover { color: var(--white); }

.btn-secondary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-secondary:hover svg { transform: translateX(4px); }

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
  position: relative;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--steel);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mist);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 4%;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--steel);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

.scroll-hint span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mist);
  writing-mode: vertical-rl;
}

/* === SECTIONS COMMON === */
section { padding: 8rem 4%; }

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  max-width: 650px;
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--mist);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 4rem;
}

/* === ABOUT === */
.about {
  background: var(--deep);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}

.about-visual-block {
  position: absolute;
  background: linear-gradient(135deg, var(--slate), var(--steel));
  border: 1px solid rgba(176, 141, 87, 0.1);
}

.about-visual-block:nth-child(1) {
  width: 75%;
  height: 70%;
  top: 0;
  left: 0;
}

.about-visual-block:nth-child(2) {
  width: 65%;
  height: 55%;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.08), rgba(176, 141, 87, 0.02));
  border-color: rgba(176, 141, 87, 0.15);
}

.about-visual-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(176, 141, 87, 0.07);
  white-space: nowrap;
  pointer-events: none;
}

.about-content .section-heading { margin-bottom: 2rem; }

.about-text {
  font-size: 0.95rem;
  color: var(--mist);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 2.5rem 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-highlight {
  padding: 1.2rem 0;
  border-top: 1px solid var(--steel);
}

.about-highlight-number {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent-light);
  margin-bottom: 0.25rem;
}

.about-highlight-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mist);
}

/* === SERVICES === */
.services {
  position: relative;
  background: var(--midnight);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--steel);
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid var(--steel);
}

.service-card {
  background: var(--midnight);
  padding: 3.5rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover::before { width: 100%; }

.service-card:hover {
  background: rgba(176, 141, 87, 0.03);
}

.service-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(176, 141, 87, 0.6);
  line-height: 1;
  margin-bottom: 2rem;
}

.service-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.8;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.service-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--steel);
  color: var(--mist);
  transition: all 0.3s;
}

.service-card:hover .service-tag {
  border-color: rgba(176, 141, 87, 0.3);
  color: var(--silver);
}

/* === APPROACH === */
.approach {
  background: var(--deep);
  position: relative;
}

.approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
}

.approach-container {
  max-width: 1300px;
  margin: 0 auto;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
}

.approach-step {
  padding: 3rem;
  border-left: 1px solid var(--steel);
  position: relative;
}

.approach-step:first-child { border-left: none; }

.approach-step-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(176, 141, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.approach-step-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.approach-step h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.approach-step p {
  font-size: 0.88rem;
  color: var(--mist);
  line-height: 1.8;
}

/* === TEAM === */
.team {
  background: var(--midnight);
  position: relative;
}

.team-container {
  max-width: 1300px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 0;
}

.team-card {
  padding: 3rem;
  background: var(--deep);
  border: 1px solid var(--steel);
  position: relative;
  transition: all 0.4s;
}

.team-card:hover {
  border-color: rgba(176, 141, 87, 0.25);
}

.team-card-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.team-avatar {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-info h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.team-bio {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.8;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--steel);
}

.team-credential {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--steel);
  color: var(--mist);
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.3s;
}

.team-linkedin:hover { color: var(--accent); }

/* === OBJECTIVES === */
.objectives {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.objectives::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
}

.objectives-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.objectives-large-text {
  position: absolute;
  right: -5%;
  top: -2rem;
  font-family: var(--serif);
  font-size: 12rem;
  font-weight: 300;
  color: rgba(176, 141, 87, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.objectives-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4rem;
}

.objective-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--steel);
  align-items: start;
}

.objective-item:first-child { border-top: 1px solid var(--steel); }

.objective-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  padding-top: 0.15rem;
}

.objective-item h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
}

/* === CONTACT === */
.contact {
  background: var(--midnight);
  position: relative;
  padding: 10rem 4%;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
}

.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.contact-heading em {
  font-style: italic;
  color: var(--accent-light);
}

.contact-text {
  font-size: 0.95rem;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text {
  font-size: 0.88rem;
  color: var(--silver);
}

.contact-detail-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mist);
  margin-bottom: 0.15rem;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group { position: relative; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mist);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--steel);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent);
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--steel);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--midnight);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  align-self: flex-start;
  margin-top: 1rem;
}

.form-submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(176, 141, 87, 0.2);
}

/* === FOOTER === */
footer {
  background: var(--midnight);
  padding: 3rem 4%;
  border-top: 1px solid var(--steel);
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand span { color: var(--accent); }

.footer-tagline {
  font-size: 0.82rem;
  color: var(--mist);
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--mist);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-acknowledgment {
  font-size: 0.78rem;
  color: var(--steel);
  line-height: 1.7;
  max-width: 900px;
}

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

.footer-legal-text {
  font-size: 0.72rem;
  color: var(--steel);
  line-height: 1.7;
  max-width: 800px;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.72rem;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .approach-steps { grid-template-columns: 1fr; }
  .approach-step { border-left: none; border-bottom: 1px solid var(--steel); }
  .approach-step:last-child { border-bottom: none; }
  .contact-container { grid-template-columns: 1fr; gap: 4rem; }
  .hero-image-placeholder { display: none; }
  .hero-content { max-width: 100%; padding-top: 8rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 5rem 6%; }

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 26, 0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
  }

  .nav-links.open a,
  nav.scrolled .nav-links.open a {
    font-size: 1.1rem;
    color: var(--silver);
  }

  .hero { padding: 0 6%; }
  .hero-stats { flex-direction: column; gap: 2rem; }
  .scroll-hint { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2.5rem; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card-header { flex-direction: column; gap: 1.2rem; }

  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-legal { flex-direction: column; gap: 1rem; align-items: flex-start; }

  .objectives-large-text { font-size: 6rem; }
}
