/* ── HOME: HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
}

.hero__orb {
  position: absolute; border-radius: 50%;
}

.hero__orb--1 {
  width: 640px; height: 640px;
  top: -180px; right: -80px;
  background: radial-gradient(circle, rgba(58,108,200,0.14) 0%, transparent 70%);
}

.hero__orb--2 {
  width: 420px; height: 420px;
  bottom: -120px; left: -60px;
  background: radial-gradient(circle, rgba(196,169,106,0.08) 0%, transparent 70%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
  padding: 100px 5%;
  width: 100%;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(196,169,106,0.35);
  color: var(--gold);
  font-size: 0.7rem; letter-spacing: 0.14em; font-weight: 500;
  padding: 7px 16px; border-radius: 2px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero__badge::before {
  content: ''; width: 20px; height: 1px; background: var(--gold);
}

.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }

.hero__sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 44px;
  max-width: 600px;
}

.hero__sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual card */
.hero__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 36px;
  backdrop-filter: blur(8px);
}

.hero__card-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero__card-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero__card-item:first-child { padding-top: 0; }

.hero__card-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}

.hero__card-value {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--white); line-height: 1.3;
}

.hero__card-sub {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ── HOME: WHAT WE DO ── */
.what-we-do {
  padding: var(--section-py) 5%;
  background: var(--white);
}

.what-we-do__inner {
  max-width: var(--max-w); margin: 0 auto;
}

.what-we-do__intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  margin-bottom: 64px;
}

.what-we-do__intro p {
  font-size: 1.05rem;
  padding-top: 16px;
}

.what-we-do__cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-col {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.25s;
  position: relative;
}

.service-col:hover { background: var(--off-white); }

.service-col__num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300;
  color: var(--gray-light);
  line-height: 1; margin-bottom: 20px;
}

.service-col h3 { font-size: 1.25rem; margin-bottom: 10px; }

.service-col p { font-size: 0.9rem; }

/* ── HOME: WHO WE WORK WITH ── */
.who {
  padding: var(--section-py) 5%;
  background: var(--navy);
  position: relative; overflow: hidden;
}

.who__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.who h2 { color: var(--white); margin-bottom: 16px; }
.who .divider { background: var(--gold); }
.who > .who__inner > div > p { color: rgba(255,255,255,0.6); margin-bottom: 36px; }

.who__list { display: flex; flex-direction: column; gap: 0; }

.who__item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.who__item:last-child { border-bottom: none; }

.who__item::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

.who__visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 48px 40px;
}

.who__visual-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.who__stat {
  margin-bottom: 32px;
}

.who__stat:last-child { margin-bottom: 0; }

.who__stat-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 400;
  color: var(--white); line-height: 1;
}

.who__stat-num span { color: var(--gold); }

.who__stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* ── HOME: WHY IT MATTERS ── */
.why {
  padding: var(--section-py) 5%;
  background: var(--off-white);
}

.why__inner {
  max-width: var(--max-w); margin: 0 auto;
}

.why__header { max-width: 560px; margin-bottom: 56px; }

.why__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; background: var(--gray-light);
  border-radius: var(--radius-md); overflow: hidden;
}

.why__item {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.25s, transform 0.25s;
}

.why__item:hover {
  background: var(--navy);
  transform: translateY(-4px);
  z-index: 1;
}

.why__item:hover .why__item-title { color: var(--white); }
.why__item:hover .why__item-text { color: rgba(255,255,255,0.55); }

.why__item-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.why__item:hover .why__item-icon {
  background: rgba(255,255,255,0.1);
}

.why__item-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px; line-height: 1.3;
}

.why__item-text {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.65;
}

/* ── HOME: PHILOSOPHY ── */
.philosophy {
  padding: var(--section-py) 5%;
  background: var(--white);
}

.philosophy__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}

.philosophy__quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; font-style: italic;
  color: var(--navy-mid); line-height: 1.5;
  position: relative; padding-left: 28px;
}

.philosophy__quote::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 3px; height: 80%;
  background: var(--gold);
}

.philosophy__text p { margin-bottom: 20px; }
.philosophy__text p:last-child { margin-bottom: 0; }

/* ── HOME: CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 80px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(58,108,200,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__inner { max-width: 640px; margin: 0 auto; position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.cta-band .btn { margin: 0 auto; }

/* ── RESPONSIVE HOME ── */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; padding: 80px 5%; }
  .hero__card { display: none; }
  .what-we-do__intro { grid-template-columns: 1fr; gap: 24px; }
  .what-we-do__cols { grid-template-columns: 1fr; }
  .who__inner { grid-template-columns: 1fr; gap: 48px; }
  .philosophy__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .why__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .why__grid { grid-template-columns: 1fr; }
}
