/* ==========================================================================
   HOME V2 — Cinematic / Bold Typography
   ========================================================================== */

.anim-in {
  opacity: 0;
  transform: translateY(28px);
  animation: animIn 0.9s var(--ease-out) forwards;
}
.anim-in[data-d="0"] { animation-delay: 0.4s; }
.anim-in[data-d="1"] { animation-delay: 0.6s; }
.anim-in[data-d="2"] { animation-delay: 0.8s; }
.anim-in[data-d="3"] { animation-delay: 1.0s; }
.anim-in[data-d="4"] { animation-delay: 1.2s; }
.anim-in[data-d="5"] { animation-delay: 1.4s; }

@keyframes animIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */

.v2-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.v2-hero-bg {
  position: absolute;
  inset: 0;
}

.v2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.v2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.7) 100%);
}

.v2-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-pad);
}

.v2-hero-tag {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.v2-tag-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.v2-hero-title {
  font-family: var(--font-serif);
  line-height: 0.95;
  margin-bottom: 24px;
}

.v2-title-line {
  display: block;
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 400;
  color: #fafaf8;
}

.v2-title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(250,250,248,0.5);
  font-style: italic;
}

.v2-hero-sub {
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.45);
  margin-bottom: 48px;
}

.v2-hero-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.v2-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fafaf8;
  border: 1px solid rgba(250,250,248,0.3);
  padding: 16px 36px;
  transition: all 0.4s var(--ease);
}

.v2-hero-btn:hover {
  background: #fafaf8;
  color: var(--black);
  border-color: #fafaf8;
}

.v2-hero-btn svg {
  transition: transform 0.3s var(--ease);
}

.v2-hero-btn:hover svg {
  transform: translateX(4px);
}

.v2-hero-btn-light {
  border-color: var(--text);
  color: var(--text);
}

.v2-hero-btn-light:hover {
  background: var(--text);
  color: var(--bg);
}

.v2-hero-meta {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: rgba(250,250,248,0.5);
}

.v2-hero-meta strong {
  color: #fafaf8;
  font-weight: 500;
}

/* Scroll indicator */
.v2-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.v2-scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: scrollBounce 2s var(--ease-in-out) infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(16px); opacity: 0.3; }
}

/* ── Intro ─────────────────────────────────────────────────────────────── */

.v2-intro {
  padding: clamp(100px, 14vw, 200px) 0;
}

.v2-intro-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  max-width: 900px;
}

.v2-intro-text em {
  font-style: italic;
  color: var(--accent-dark);
}

.v2-intro-text strong {
  font-weight: 500;
}

/* ── Services — image card grid ───────────────────────────────────────── */

.v2-services {
  padding: 0 0 clamp(80px, 12vw, 160px);
}

.v2-svc-head {
  max-width: 680px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.v2-svc-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-top: 14px;
}

.v2-svc-head h2 em { font-style: italic; color: var(--brand, #f75622); }

.v2-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

.v2-svc-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.v2-svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand, #f75622);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.3);
}

.v2-svc-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.v2-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.v2-svc-card:hover .v2-svc-img img { transform: scale(1.07); }

.v2-svc-img .v2-svc-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  color: #fff;
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(4px);
  border-radius: 50%;
}

.v2-svc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(20px, 1.8vw, 28px);
}

.v2-svc-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
}

.v2-svc-card:hover .v2-svc-body h3 { color: var(--brand, #f75622); }

.v2-svc-body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}

.v2-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.v2-svc-card:hover .v2-svc-link { color: var(--brand, #f75622); gap: 12px; }

.v2-svc-link svg { transition: transform 0.3s var(--ease); }
.v2-svc-card:hover .v2-svc-link svg { transform: translateX(3px); }

@media (max-width: 1100px) {
  .v2-svc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .v2-svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .v2-svc-grid { grid-template-columns: 1fr; }
}

/* ── Partners / Clients strip ─────────────────────────────────────────── */

.h-partners {
  padding: clamp(80px, 10vw, 140px) 0 clamp(100px, 12vw, 160px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.h-partners-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint, var(--text-muted));
  margin-bottom: 56px;
}

.h-partners .partners-track {
  margin-top: 0;
}

.h-partners + .numbers-section {
  margin-top: clamp(60px, 8vw, 100px);
}

/* ── Sectors of Expertise ─────────────────────────────────────────────── */

.v2-sectors {
  padding: clamp(80px, 12vw, 160px) 0;
}

.v2-sectors-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.v2-sectors-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--text);
  margin-top: 12px;
}

.v2-sectors-head h2 em {
  font-style: italic;
  color: var(--accent-dark);
}

.v2-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.v2-sector-card {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
}

.v2-sector-img {
  position: absolute;
  inset: 0;
}

.v2-sector-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.v2-sector-card:hover .v2-sector-img img {
  transform: scale(1.08);
}

.v2-sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.65) 100%);
  transition: background 0.4s var(--ease);
}

.v2-sector-card:hover .v2-sector-overlay {
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.75) 100%);
}

.v2-sector-card h3 {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fafaf8;
  padding: 0 16px;
  z-index: 1;
}

@media (max-width: 960px) {
  .v2-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .v2-sectors-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Projects ──────────────────────────────────────────────────────────── */

.v2-projects {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-alt);
  transition: background 0.5s var(--ease);
}

.v2-projects-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.v2-projects-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--text);
}

.v2-pj-list {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.v2-pj {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  overflow: hidden;
  background: var(--black);
}

.v2-pj:nth-child(even) {
  direction: rtl;
}

.v2-pj:nth-child(even) > * {
  direction: ltr;
}

.v2-pj-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.v2-pj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  opacity: 0.9;
}

.v2-pj:hover .v2-pj-img img {
  transform: scale(1.05);
  opacity: 1;
}

.v2-pj-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 56px);
  background: var(--black);
}

.v2-pj-info span:first-child {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.v2-pj-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  color: #fafaf8;
  margin-bottom: 8px;
}

.v2-pj-loc {
  font-size: 14px;
  color: rgba(250,250,248,0.4);
}

/* ── CTA ───────────────────────────────────────────────────────────────── */

.v2-cta {
  padding: clamp(100px, 14vw, 200px) 0;
  text-align: center;
}

.v2-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.v2-cta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 24px;
  display: block;
}

.v2-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 40px;
}

.v2-cta h2 em {
  font-style: italic;
  color: var(--accent-dark);
}

/* ── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .v2-pj {
    grid-template-columns: 1fr;
  }

  .v2-pj:nth-child(even) {
    direction: ltr;
  }

  .v2-svc-preview {
    display: none;
  }

  .v2-hero-bottom {
    flex-direction: column;
    gap: 24px;
  }
}
