/* ============================================
   EAGLEVIEW STRATEGIC CONSULTING
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1C3249;
  --navy-light: #243C57;
  --gold:       #C9A84C;
  --gold-light: #DFC07A;
  --white:      #F0F4F8;
  --grey-100:   #E2E8EF;
  --grey-300:   #99AABB;
  --grey-500:   #607080;
  --body-max:   1160px;
  --section-v:  96px;
  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ───────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 1.1rem; line-height: 1.75; }
.body-sm { font-size: 0.9rem; line-height: 1.65; color: var(--grey-500); }

/* ── Gold Rule System ─────────────────────── */
.gold-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}
.gold-rule.centered { margin-left: auto; margin-right: auto; }

/* ── Layout ───────────────────────────────── */
.container {
  max-width: var(--body-max);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: var(--section-v) 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--mid  { background: var(--navy-mid); color: var(--white); }
.section--slate { background: #F7F9FB; }

/* ── Navigation ───────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background 0.3s;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 40px;
  max-width: var(--body-max);
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav__logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-300);
  transition: color 0.2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 24px 40px 32px;
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.nav__mobile a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-300);
}
.nav__mobile a:hover { color: var(--white); }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover { background: var(--gold-light); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(13,27,42,0.3);
}
.btn--outline-dark:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.btn svg { width: 14px; height: 14px; }

/* ── Hero ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(28,50,73,0.8) 0%, transparent 70%),
    linear-gradient(135deg, #0D1B2A 0%, #152236 50%, #0D1B2A 100%);
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--body-max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__text { color: var(--white); }
.hero__text .eyebrow { margin-bottom: 28px; }
.hero__headline { color: var(--white); margin-bottom: 28px; }
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  color: var(--grey-300);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 24px 28px;
  color: var(--white);
}
.hero__stat-card:first-child { margin-left: 40px; }
.hero__stat-card:last-child { margin-right: 40px; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-300);
}

/* ── Section Headers ──────────────────────── */
.section-header {
  margin-bottom: 56px;
}
.section-header--centered { text-align: center; }
.section-header--centered .gold-rule { margin: 24px auto; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-header .gold-rule { margin-top: 20px; margin-bottom: 0; }

/* ── Services Grid (Home) ─────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-100);
  border: 1px solid var(--grey-100);
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  transition: background 0.2s;
  position: relative;
}
.service-card:hover { background: #F0F5FA; }
.service-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: var(--gold);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.25;
}
.service-card__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--grey-500);
  margin-bottom: 24px;
}
.service-card__link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.service-card:hover .service-card__link { gap: 12px; }

/* ── About Strip (Home) ───────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip__image-wrap {
  position: relative;
}
.about-strip__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%);
}
.about-strip__photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--navy-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey-300);
}
.about-strip__photo-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.about-strip__photo-placeholder p { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; }
.about-strip__accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  pointer-events: none;
}
.about-strip__text .eyebrow { margin-bottom: 20px; }
.about-strip__text h2 { margin-bottom: 28px; }
.about-strip__text p { color: var(--grey-500); margin-bottom: 20px; font-size: 0.97rem; }
.about-strip__text p:last-of-type { margin-bottom: 36px; }
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.credential-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--grey-100);
  color: var(--grey-500);
  border-radius: 2px;
}

/* ── Differentiators ──────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.diff-item__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.diff-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.diff-item p { font-size: 0.9rem; color: var(--grey-300); line-height: 1.7; }

/* ── Engagement Models ────────────────────── */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--navy-mid);
}
.engagement-card {
  background: var(--navy);
  padding: 40px 32px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.engagement-card__type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.engagement-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.engagement-card p {
  font-size: 0.85rem;
  color: var(--grey-300);
  line-height: 1.7;
  margin-bottom: 20px;
}
.engagement-card__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gold-light);
}

/* ── CTA Banner ───────────────────────────── */
.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.cta-banner h2 { color: var(--white); max-width: 700px; }
.cta-banner p { color: var(--grey-300); max-width: 500px; }
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── Page Hero (inner pages) ──────────────── */
.page-hero {
  background: var(--navy);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #152236 100%);
}
.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero__content .eyebrow { margin-bottom: 20px; }
.page-hero__content h1 { margin-bottom: 24px; }
.page-hero__content p {
  color: var(--grey-300);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.75;
}

/* ── About Page ───────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.about-sidebar__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 28px;
}
.about-sidebar__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey-300);
  margin-bottom: 28px;
}
.about-sidebar__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.about-sidebar__title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.about-sidebar__links { display: flex; flex-direction: column; gap: 12px; }
.about-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--grey-300);
  transition: color 0.2s;
}
.about-sidebar__link:hover { color: var(--white); }
.about-sidebar__link svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.about-body h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  margin-top: 48px;
}
.about-body h2:first-child { margin-top: 0; }
.about-body p {
  color: var(--grey-300);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.career-list { list-style: none; margin-bottom: 24px; }
.career-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--grey-300);
  font-size: 0.9rem;
  display: flex;
  gap: 16px;
}
.career-list li strong {
  color: var(--white);
  font-weight: 500;
  min-width: 120px;
  flex-shrink: 0;
}
.expertise-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.expertise-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  border-radius: 2px;
}

/* ── Services Page ────────────────────────── */
.services-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-100);
  margin-bottom: 1px;
}
.service-overview-card {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.service-overview-card__icon { width: 32px; height: 32px; color: var(--gold); margin-bottom: 20px; }
.service-overview-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-overview-card p { font-size: 0.87rem; color: var(--grey-500); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.service-overview-card a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Individual Service Page ──────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.service-detail__body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 48px;
}
.service-detail__body h2:first-child { margin-top: 0; }
.service-detail__body p {
  color: var(--grey-500);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.service-detail__body ul {
  list-style: none;
  margin-bottom: 24px;
}
.service-detail__body ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.93rem;
  color: var(--grey-500);
  display: flex;
  gap: 14px;
}
.service-detail__body ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.service-sidebar {
  position: sticky;
  top: 100px;
}
.service-sidebar__card {
  background: var(--navy);
  padding: 36px 32px;
  color: var(--white);
  margin-bottom: 16px;
}
.service-sidebar__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--white);
}
.service-sidebar__card p { font-size: 0.85rem; color: var(--grey-300); line-height: 1.7; margin-bottom: 20px; }
.service-nav-list { list-style: none; }
.service-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.service-nav-list a {
  display: block;
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--grey-300);
  transition: color 0.2s;
}
.service-nav-list a:hover, .service-nav-list a.active { color: var(--gold); }

/* ── Contact Page ─────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-info p { color: var(--grey-300); font-size: 0.97rem; line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail__icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-detail__icon svg { width: 16px; height: 16px; }
.contact-detail__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail__value { font-size: 0.9rem; color: var(--grey-300); }
.contact-detail__value a { color: var(--grey-300); transition: color 0.2s; }
.contact-detail__value a:hover { color: var(--white); }

/* ── Contact Form ─────────────────────────── */
.contact-form-card {
  background: var(--white);
  padding: 48px 44px;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--navy);
  background: #F7F9FB;
  border: 1px solid var(--grey-100);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; }
.form-note {
  font-size: 0.75rem;
  color: var(--grey-500);
  text-align: center;
  margin-top: 16px;
}

/* ── Footer ───────────────────────────────── */
.footer {
  background: #080F18;
  padding: 64px 0 32px;
  color: var(--white);
}
.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}
.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__logo-tag {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer__tagline { font-size: 0.83rem; color: var(--grey-500); line-height: 1.7; }
.footer__col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 0.83rem;
  color: var(--grey-500);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy { font-size: 0.75rem; color: var(--grey-500); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.75rem; color: var(--grey-500); transition: color 0.2s; }
.footer__legal a:hover { color: var(--white); }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { flex-direction: row; justify-content: center; }
  .hero__stat-card:first-child { margin-left: 0; }
  .hero__stat-card:last-child { margin-right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: 1fr; gap: 48px; }
  .about-strip__image-wrap { max-width: 400px; }
  .diff-grid { grid-template-columns: 1fr; gap: 36px; }
  .engagement-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { display: flex; gap: 32px; align-items: flex-start; }
  .about-sidebar__photo, .about-sidebar__photo-placeholder { width: 200px; aspect-ratio: 3/4; margin-bottom: 0; flex-shrink: 0; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-overview { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-v: 64px; }
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { padding: 24px 20px 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero__visual { flex-direction: column; }
  .services-overview { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .about-sidebar { flex-direction: column; }
  .about-sidebar__photo, .about-sidebar__photo-placeholder { width: 100%; }
}

/* ── Animations ───────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-up-2, .fade-up-3 { animation: none; }
}
