/* ═══════════════════════════════════════════════════════════════
   Mazghouny & Co — Shared Stylesheet v11
   v11 adds photo-backed page heroes with deep-navy overlay
   ═══════════════════════════════════════════════════════════════ */

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

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --navy:       #003A70;
  --navy-deep:  #001F47;
  --rose:       #CC3366;
  --rose-dark:  #A8284F;
  --white:      #FFFFFF;
  --off-white:  #F4F4F0;
  --rule:       #E0DDD8;
  --rule-navy:  rgba(255,255,255,0.08);
  --text:       #1A1A1A;
  --gray:       #7A7A7A;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Nunito Sans', sans-serif;
  --max-w:      1240px;

  /* ── Hero photo overlay ──────────────────────────────────────
     Controls how visible the background photo is on hero sections.
     0 = photo invisible (solid navy), 1 = photo fully visible.
     Adjust this single value to tune all page heroes at once.     */
  --hero-photo-opacity: 0.22;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.site-header.solid {
  background: var(--navy-deep);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 68px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--white); }
.nav-cta {
  color: var(--rose) !important;
  border: 1px solid rgba(204,51,102,0.5);
  padding: 8px 20px;
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--rose);
  color: var(--white) !important;
  border-color: var(--rose) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: transform 0.2s, opacity 0.2s;
}

/* ─── PAGE HERO (non-homepage) ───────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: 160px 0 96px;
  position: relative;
  overflow: hidden;
  isolation: isolate; /* new stacking context — keeps z-index local */
}

/* Photo fills the hero using background-image so it never affects height */
.page-hero__photo {
  position: absolute; inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: var(--hero-photo-opacity);
}

/* Deep-navy overlay — sits above the photo, below the content */
.page-hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,15,40,0.6) 0%, rgba(0,15,40,0.15) 50%),
    linear-gradient(to top,    rgba(0,15,40,0.85) 0%, rgba(0,15,40,0.0) 60%);
  pointer-events: none;
}

/* Dot grid — above overlay, below content */
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* All direct children (container div etc.) sit above everything */
.page-hero > *:not(.page-hero__photo):not(.page-hero__overlay) {
  position: relative;
  z-index: 3;
}
.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--rose);
}
.page-hero-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}

/* ─── HOMEPAGE HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--navy);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,10,30,0.75) 0%, rgba(0,10,30,0.0) 22%),
    linear-gradient(to top,    rgba(0,10,30,0.95) 0%, rgba(0,10,30,0.5) 45%, rgba(0,10,30,0.06) 100%);
}
.hero-bg--navy {
  background: var(--navy-deep);
}
.hero-bg--navy::after {
  background:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0,58,112,0.6) 0%, rgba(0,31,71,1) 100%);
  background-size: 22px 22px, 100% 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 96px;
}
.hero-inner { max-width: 620px; }
.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}
h1.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(60px, 7vw, 104px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
h1.hero-title em { font-style: italic; color: var(--rose); }
.hero-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
  max-width: 400px;
  margin-bottom: 48px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-creds {
  display: inline-flex;
  flex-wrap: wrap;
}
.hc {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}
.hc:last-child { border-right: 1px solid rgba(255,255,255,0.1); }
.hc strong {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 10px;
  margin-bottom: 1px;
}
.hc-logo {
  display: block;
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.hc-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
/* Recognition strip logo badges */
.rec-logo {
  display: block;
  height: 28px;
  width: auto;
  filter: grayscale(1) contrast(0.7);
  opacity: 0.65;
  margin: 0 auto 8px;
}
.rec-item:hover .rec-logo { opacity: 0.9; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-rose {
  background: var(--rose);
  color: var(--white);
  padding: 13px 34px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.btn-rose:hover { background: var(--rose-dark); }
.btn-ghost-w {
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.5);
  padding: 13px 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-w:hover { color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-rose-outline {
  border: 1px solid var(--rose);
  color: var(--rose);
  padding: 12px 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-rose-outline:hover { background: var(--rose); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--rose);
  padding: 14px 44px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid var(--white);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-white:hover {
  background: transparent;
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.65);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 13px 34px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-deep); }

/* ─── SECTION TYPOGRAPHY ─────────────────────────────────────── */
.section-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: 300;
  color: var(--navy-deep);
  margin-bottom: 56px;
  line-height: 1.08;
}
.section-heading em { font-style: italic; color: var(--rose); }
.section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.section-row .section-heading { margin-bottom: 0; }
.view-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.view-link:hover { color: var(--rose); border-color: var(--rose); }

/* ─── ASSET STRIP ────────────────────────────────────────────── */
.asset-strip { background: var(--rose); }
.asset-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.asset-item {
  padding: 40px 48px 40px 0;
  border-right: 1px solid rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.asset-item:not(:first-child) { padding-left: 48px; }
.asset-item:last-child { border-right: none; padding-right: 0; }
.v3-mark {
  display: block;
  width: 24px; height: 1px;
  background: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}
.asset-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.asset-headline {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.38;
}

/* ─── EXPERTISE SECTION (homepage + listing) ─────────────────── */
.expertise-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--rule);
}
.exp-list { border-top: 1px solid var(--rule); }
.exp-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: padding-left 0.25s;
  text-decoration: none;
}
.exp-row:hover { padding-left: 10px; }
.exp-row-num {
  font-size: 18px;
  color: var(--rose);
  font-weight: 300;
  padding-top: 4px;
  flex-shrink: 0;
}
.exp-row-body { display: flex; flex-direction: column; }
.exp-row-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy-deep);
  transition: color 0.25s;
}
.exp-row:hover .exp-row-name { color: var(--rose); }
.exp-row-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.exp-row:hover .exp-row-desc { max-height: 60px; opacity: 1; margin-top: 7px; }
.exp-row-arrow {
  font-size: 18px;
  color: var(--rose);
  opacity: 0;
  transition: opacity 0.25s;
  padding-top: 5px;
  align-self: start;
}
.exp-row:hover .exp-row-arrow { opacity: 1; }

/* ─── ABOUT BLOCK ────────────────────────────────────────────── */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-content {
  background: var(--navy-deep);
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-content::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.about-content > * { position: relative; z-index: 1; }
.about-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}
.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(38px, 3.8vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0;
}
.about-heading em { font-style: italic; color: var(--rose); }
.about-rule {
  width: 40px; height: 1px;
  background: var(--rose);
  margin: 28px 0;
}
.about-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255,255,255,0.48);
  max-width: 380px;
  margin-bottom: 44px;
}
.about-stats {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--rule-navy);
  display: flex;
  gap: 44px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
}
.about-photo {
  position: relative;
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,10,30,0.1);
}
.about-photo--navy {
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo--navy::after { display: none; }
.about-photo-inner {
  padding: 60px 48px;
  position: relative;
  z-index: 1;
}
.about-photo-inner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 28px;
}
.about-quote-attr {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ─── TEAM SECTION ───────────────────────────────────────────── */
.team-section {
  padding: 100px 0 100px;
  background: var(--off-white);
  border-bottom: 1px solid var(--rule);
}
/* legacy grid — used on people.html */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
/* slider — used on homepage */
.team-slider-wrap {
  margin-top: 48px;
  overflow: hidden;
}
.team-slider {
  display: flex;
  gap: 2px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
}
.team-slider:active { cursor: grabbing; }
/* card width set by JS; this is just the fallback */
.team-slider .team-card { flex-shrink: 0; width: 282px; }
.team-slider .team-img { height: 380px; }
@media (max-width: 600px) {
  .team-slider .team-img { height: 300px; }
}
.slider-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--navy-deep);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.slider-btn:hover {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}
.team-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.team-img { height: 340px; overflow: hidden; }
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s;
}
.team-card:hover .team-img img { transform: scale(1.04); }
.team-info { padding: 22px 24px 26px; }
.team-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 5px;
}
.team-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.team-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1px solid rgba(204,51,102,0.25);
  padding: 3px 8px;
}
.practice-item {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
}

/* ─── DEALS SECTION ──────────────────────────────────────────── */
.deals-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--rule);
}
.deals-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.deals-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  align-items: stretch;
}
.deal-feature {
  background: var(--navy-deep);
  padding: 56px 52px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.deal-feature:hover { background: #002158; }
.deal-sector {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.deal-client {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 20px;
}
.deal-headline {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.38;
  margin-bottom: 40px;
}
.deal-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  border-bottom: 1px solid rgba(204,51,102,0.35);
  padding-bottom: 2px;
}
.deal-sm {
  background: var(--off-white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border-top: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.deal-sm:hover { border-top-color: var(--rose); background: var(--white); }
.deal-sm .deal-sector { color: var(--gray); }
.deal-sm .deal-client { color: var(--gray); }
.deal-sm .deal-headline { font-size: 20px; color: var(--navy-deep); margin-bottom: 24px; }
.deal-sm .deal-cta { color: var(--navy); border-color: rgba(0,58,112,0.25); }

/* ─── DEALS LISTING (full page) ─────────────────────────────── */
.deals-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.deal-card {
  background: var(--off-white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  border-top: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.deal-card:hover { border-top-color: var(--rose); background: var(--white); }
.deal-card .deal-sector { color: var(--gray); margin-bottom: 10px; }
.deal-card .deal-client { color: var(--gray); margin-bottom: 16px; }
.deal-card .deal-headline { font-family: var(--font-serif); font-size: 20px; color: var(--navy-deep); line-height: 1.4; flex: 1; margin-bottom: 24px; }
.deal-card .deal-cta { color: var(--navy); border-bottom: 1px solid rgba(0,58,112,0.25); padding-bottom: 2px; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; align-self: flex-start; }
.deal-card.featured { background: var(--navy-deep); }
.deal-card.featured .deal-sector { color: rgba(255,255,255,0.35); }
.deal-card.featured .deal-client { color: rgba(255,255,255,0.32); }
.deal-card.featured .deal-headline { color: var(--white); }
.deal-card.featured .deal-cta { color: var(--rose); border-color: rgba(204,51,102,0.35); }

/* ─── INSIGHTS SECTION ───────────────────────────────────────── */
.insights-section {
  padding: 100px 0;
  background: var(--off-white);
}
.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.ins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ins-card {
  background: var(--white);
  padding: 40px 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-top: 2px solid transparent;
  transition: border-top-color 0.2s;
  text-decoration: none;
}
.ins-card:hover { border-top-color: var(--rose); }
.ins-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.ins-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy-deep);
  line-height: 1.45;
  flex: 1;
}
.ins-foot {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ins-date {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.ins-arr {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  transition: letter-spacing 0.2s ease-out;
}
.ins-foot:hover .ins-arr { letter-spacing: 0.22em; }
.ins-card.navy {
  background: var(--navy-deep);
  border-top-color: var(--rose);
  position: relative;
  overflow: hidden;
}
.ins-card.navy::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.ins-card.navy > * { position: relative; z-index: 1; }
.ins-card.navy .ins-cat { color: rgba(255,255,255,0.35); }
.ins-card.navy .ins-title { color: var(--white); }
.ins-card.navy .ins-date { color: rgba(255,255,255,0.3); }
.ins-card.navy .ins-arr { color: var(--rose); }

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: var(--rose);
  padding: 96px 0;
  text-align: center;
}
.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-heading em { font-style: italic; }
.cta-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
}

/* ─── RECOGNITION STRIP ──────────────────────────────────────── */
.recognition-strip {
  background: var(--off-white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 52px 0;
}
.rec-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.rec-item { text-align: center; }
.rec-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.rec-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.rec-divider {
  width: 1px;
  height: 40px;
  background: var(--rule);
}

/* ─── PRACTICE AREA DETAIL ───────────────────────────────────── */
.practice-intro {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.practice-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  max-width: 760px;
}
.practice-body p + p { margin-top: 20px; }

.scope-section {
  padding: 80px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--rule);
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.scope-item {
  background: var(--white);
  padding: 36px 32px;
}
.scope-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--rose);
  margin-bottom: 12px;
  line-height: 1;
}
.scope-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.scope-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray);
}

.practice-deals-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.practice-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.faq-section {
  padding: 80px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--rule);
}
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-q {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.faq-q::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}
.faq-item.open .faq-a { max-height: 300px; opacity: 1; margin-top: 16px; }

/* ─── CONTACT FORM ───────────────────────────────────────────── */
.contact-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-block { padding-top: 8px; }
.contact-detail {
  margin-bottom: 32px;
}
.contact-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.contact-value {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy-deep);
  line-height: 1.55;
}
.contact-value a {
  color: var(--navy-deep);
  transition: color 0.2s;
}
.contact-value a:hover { color: var(--rose); }
.contact-form-block {}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ─── PROFILE PAGE ───────────────────────────────────────────── */
.profile-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  padding: 80px 0;
  align-items: start;
}
.profile-photo {
  position: sticky;
  top: 96px;
}
.profile-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.profile-meta { margin-top: 24px; }
.profile-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}
.profile-name-sm {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 16px;
}
.profile-contacts { display: flex; flex-direction: column; gap: 10px; }
.profile-contact-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.profile-contact-link:hover { color: var(--rose); }
.profile-content {}
.profile-intro {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 48px;
}
.profile-rankings {
  background: var(--off-white);
  padding: 32px 36px;
  margin-bottom: 48px;
}
.profile-rankings-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.ranking-item {
  border-top: 1px solid var(--rule);
  padding: 16px 0;
}
.ranking-item:first-of-type { border-top: none; }
.ranking-org {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.ranking-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.6;
  font-style: italic;
}
.profile-section { margin-bottom: 48px; }
.profile-section-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.profile-deal-list { display: flex; flex-direction: column; gap: 2px; }
.profile-deal-item {
  padding: 16px 20px;
  background: var(--off-white);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  transition: background 0.2s;
}
.profile-deal-item:hover { background: var(--white); }
.profile-edu-list { display: flex; flex-direction: column; gap: 12px; }
.profile-edu-item {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
}
.profile-edu-item strong {
  font-weight: 600;
  color: var(--navy-deep);
  display: block;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.profile-lang-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.profile-lang {
  border: 1px solid var(--rule);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.06em;
}

/* ─── MAP EMBED AREA ─────────────────────────────────────────── */
.map-section { background: var(--off-white); }
.map-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.map-info {
  padding: 64px 56px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.map-info::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.map-info > * { position: relative; z-index: 1; }
.map-info h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.1;
}
.map-detail-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.map-detail-value {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 28px;
}
.map-detail-value a {
  color: var(--rose);
  transition: opacity 0.2s;
}
.map-detail-value a:hover { opacity: 0.8; }
.map-embed { height: 480px; }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── WHATSAPP FLOAT ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.wa-float svg { width: 26px; height: 26px; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo img {
  height: 48px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  line-height: 1.85;
  max-width: 240px;
}
.footer-col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--rule-navy);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); }
.footer-soc { display: flex; align-items: center; }
.footer-soc a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  margin-left: 20px;
  transition: color 0.2s;
}
.footer-soc a:hover { color: var(--rose); }

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.45); }

/* ─── GENERAL BODY CONTENT ───────────────────────────────────── */
.body-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
}
.body-text p + p { margin-top: 18px; }
.body-text h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy-deep);
  margin: 32px 0 14px;
}
.body-text ul {
  list-style: disc;
  padding-left: 20px;
  margin: 14px 0;
}
.body-text li { margin-bottom: 8px; }

/* ─── PEOPLE LISTING GRID ────────────────────────────────────── */
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* ─── CONTENT SECTIONS ───────────────────────────────────────── */
.content-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.content-section:last-of-type { border-bottom: none; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-item {
  padding: 36px 32px;
  background: var(--off-white);
  border-top: 3px solid var(--rose);
}
.value-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--rose);
  margin-bottom: 8px;
  line-height: 1;
}
.value-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.value-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .deals-grid { grid-template-columns: 1fr 1fr; }
  .deal-feature { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ins-grid { grid-template-columns: 1fr 1fr; }
  .deals-full-grid { grid-template-columns: 1fr 1fr; }
  .scope-grid { grid-template-columns: 1fr 1fr; }
  .practice-deals-grid { grid-template-columns: 1fr 1fr; }
  .profile-layout { grid-template-columns: 280px 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .map-grid { grid-template-columns: 1fr; }
  .map-embed { height: 360px; }
  .about-block { grid-template-columns: 1fr; }
  .about-photo { height: 400px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .people-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy-deep);
    padding: 24px 24px;
    gap: 20px;
    align-items: flex-start;
  }
  .hero-creds { flex-direction: column; }
  .hc { border-right: 1px solid rgba(255,255,255,0.1) !important; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .ins-grid { grid-template-columns: 1fr; }
  .deals-full-grid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .practice-deals-grid { grid-template-columns: 1fr; }
  .asset-strip-inner { grid-template-columns: 1fr; }
  .asset-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 32px 24px; }
  .asset-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-photo { position: static; }
  .section-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .deals-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .rec-inner { gap: 32px; }
  .rec-divider { display: none; }
  .header-inner { padding: 0 24px; }
}
