/* =====================================================
   Nusa Advocates — Herbert WordPress Theme
   Inspired by Herbert Smith Freehills design language
   ===================================================== */

:root {
  --gold:         #b79342;
  --accent:       #b79342;
  --brown:        #483a24;
  --blue:         #0c1a31;
  --primary:      #483a24;
  --primary-dark: #2e2517;
  --ink:          #1a1714;
  --mid:          #4a4540;
  --muted:        #7a7370;
  --rule:         #d8d2cc;
  --bg:           #ffffff;
  --bg-2:         #f5f3f0;
  --bg-dark:      #2c2520;
  --white:        #ffffff;
  --maxw:         1380px;
  --nav-h:        104px;
  --header-top-h: 40px;
  --header-main-h: 64px;
  --serif: "Libre Baskerville", "Georgia", "Times New Roman", serif;
  --sans:  "Avenir", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); font-size: 16px; }
body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p,ul,li  { font-size: 1.125rem; color: var(--mid); line-height: 1.75; }
p + p { margin-top: 1.1em; }

/* ---- Helpers ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 48px; }
.py { padding-top: 80px; padding-bottom: 80px; }
.py-sm { padding-top: 64px; padding-bottom: 64px; }
.bg-2  { background: var(--bg-2); }
.bg-dk { background: var(--bg-dark); }
.bg-sk { background: var(--accent); }
.white { color: var(--white); }
.anchor { scroll-margin-top: calc(var(--nav-h) + 20px); }
.label {
  display: inline-block;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--muted); margin-bottom: 20px;
}
.label--light { color: rgba(255,255,255,.6); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 15px 32px; border: 1.5px solid currentColor;
  background: transparent; color: var(--ink); cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.btn:hover { background: var(--ink); color: #fff; }
.btn--filled { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--filled:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn--white  { color: #fff; border-color: #fff; }
.btn--white:hover { background: #fff; color: var(--primary); }
.btn--white-fill { background: #fff; color: var(--primary); border-color: #fff; }
.btn--white-fill:hover { background: transparent; color: #fff; }

.txt-link {
  font-family: var(--sans); font-size: .85rem; font-weight: 600;
  letter-spacing: .1em;
  display: inline-flex; align-items: center;
  color: var(--gold); border-bottom: 1.5px solid var(--gold); padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  text-transform: capitalize;
}
.txt-link:hover { color: var(--blue); border-color: var(--blue); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--rule);
}

/* Outer wrapper: logo (left) + nav-stack (right) */
.site-header__inner {
  display: flex; align-items: stretch;
  height: var(--nav-h);
  max-width: var(--maxw); margin: 0 auto; padding: 0 48px;
}

/* Logo — left column, spans full height of both nav rows */
.logo {
  display: flex; align-items: center; flex-shrink: 0;
  padding-right: 32px;
}
.logo__img { height: 86px; width: auto; display: block; }

/* Right column: two rows stacked */
.header-nav-stack {
  flex: 1; display: flex; flex-direction: column;
}

/* Top row: utility links + lang */
.header-top {
  height: var(--header-top-h);
  display: flex; align-items: center; justify-content: flex-end; gap: 16px;
}

/* Utility nav (Our Firm, Contact, Careers) */
.nav-utility ul { display: flex; list-style: none; align-items: center; gap: 4px; }
.nav-utility a {
  font-family: var(--sans); font-size: .9rem; font-weight: 500;
  letter-spacing: .01em; color: var(--ink);
  padding: 0 10px; transition: color .2s;
}
.nav-utility a:hover { color: var(--primary); }

/* Main nav row: dropdown items + search */
.header-main {
  flex: 1; display: flex; align-items: center; justify-content: flex-end;
}

/* Nav items */
.nav-list { display: flex; list-style: none; align-items: stretch; height: var(--header-main-h); }
.nav-item  { position: relative; display: flex; align-items: center; }
.nav-btn {
  font-family: var(--sans); font-size: .9rem; font-weight: 500; color: var(--ink);
  background: none; border: none; cursor: pointer;
  padding: 0 18px; height: 100%;
  display: flex; align-items: center; gap: 6px;
  transition: color .2s; white-space: nowrap; position: relative;
}
.nav-btn::after {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px;
  height: 2px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-btn:hover, .nav-item.is-open .nav-btn { color: var(--primary); }
.nav-btn:hover::after, .nav-item.is-open .nav-btn::after { transform: scaleX(1); }
.nav-btn .chevron {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .25s var(--ease); flex-shrink: 0;
}
.nav-item.is-open .nav-btn .chevron { transform: rotate(225deg) translate(-1px, -1px); }

/* Right side (search + burger) */
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-icon { background: none; border: none; cursor: pointer; color: var(--ink); padding: 8px; display: grid; place-items: center; }
.nav-icon:hover { color: var(--primary); }
.nav-icon svg { width: 20px; height: 20px; }

/* Language switcher */
.lang-switcher { display: flex; align-items: center; }
.lang-btn {
  font-family: var(--sans); font-size: 1.2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); padding: 4px 8px;
  transition: all .2s var(--ease); cursor: pointer;
}
.lang-btn:hover, .lang-btn--active { color: var(--primary); border-color: var(--primary); background: transparent; }

/* Burger */
.burger { 
  display: flex; 
  flex-direction: column; 
  gap: 5px; 
  background: none; 
  border: none; 
  cursor: pointer; 
  padding: 8px;
  position: relative;
  z-index: 1000;
}
.burger span { 
  display: block; 
  width: 24px; 
  height: 2px; 
  background: var(--ink); 
  transition: .3s var(--ease); 
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hide desktop burger, show only in mobile */
.header-main .burger { display: none; }

/* Mobile controls (lang + burger) — hidden on desktop */
.mob-controls { 
  display: none; 
  align-items: center; 
  gap: 12px; 
  margin-left: auto;
  position: relative;
  z-index: 1000;
}

/* Mobile nav overlay — hidden on desktop, shown only on mobile */
.nav-mobile {
  display: none;
}

/* ---- Dropdown / Mega panel ---- */
.dropdown {
  position: fixed; left: 0; right: 0; top: var(--nav-h);
  background: var(--white); border-top: 1px solid var(--rule);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  display: none; z-index: 800;
}
.nav-item.is-open .dropdown { display: block; }
.dropdown__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 52px 48px 60px;
  display: grid; grid-template-columns: 280px 1fr; gap: 64px;
}
.drop-intro h3 { font-family: var(--sans); font-weight: 700; font-size: 1.5rem; margin-bottom: 14px; color: var(--primary); }
.drop-intro p  { font-size: .95rem; margin-bottom: 22px; text-align:justify; }
.drop-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 48px; }
.drop-col h4 {
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .01em;
  color: var(--muted); padding-bottom: 12px;
  border-bottom: 1px solid var(--rule); margin-bottom: 16px;
}
.drop-col ul { list-style: none; }
.drop-col li { border-bottom: 1px solid var(--rule); display: flex; align-items: center; }
.drop-col a {
  display: flex; flex: 1; align-items: center; padding: 11px 0;
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
  transition: color .2s, padding-left .2s var(--ease);
}
.drop-col a:hover { color: var(--primary); padding-left: 6px; }

/* Multi-level nav buttons */
.nav-level-btn {
  flex: 1; text-align: left; padding: 11px 0; border: none; background: none;
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  transition: all .2s var(--ease);
}
.nav-level-btn:hover { color: var(--primary); padding-left: 6px; }
.nav-level-btn.active {
  color: var(--primary); font-weight: 600; background: rgba(75, 65, 56, 0.06);
  padding: 11px 8px; margin: 0 -8px;
}
.nav-level-btn::after {
  content: ''; width: 6px; height: 6px; display: inline-block;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg); flex-shrink: 0; transition: transform .25s var(--ease);
}
.nav-level-btn.active::after { transform: rotate(135deg); }
.nav-level-col { animation: slideIn .25s var(--ease) forwards; }
@keyframes slideIn { from { opacity: 0; } to { opacity: 1; } }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--primary-dark);
}
.hero__img { position: absolute; inset: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,22,18,.85) 0%, rgba(28,22,18,.45) 50%, rgba(28,22,18,.2) 100%);
}
.hero__body {
  position: relative; z-index: 2;
  padding: 0 48px 80px;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
}
.hero__body .label { color: rgba(255,255,255,.65); }
.hero h1 { color: #fff; max-width: 840px; margin-bottom: 28px; line-height: 1.05; }
.hero__sub { font-size: 1.2rem; color: rgba(255,255,255,.8); max-width: 540px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 36px; right: 48px; z-index: 2;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .18em;
  color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 8px;
}
.hero__scroll::before { content: ''; width: 1px; height: 36px; background: rgba(255,255,255,.35); }

/* =====================================================
   HERO SLIDER (front page)
   ===================================================== */
.hero--slider { display: block; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
}
.hero-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 2; }
.hero-slide__img { position: absolute; inset: 0; overflow: hidden; }
.hero-slide__img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08); transition: transform 9s linear;
}
.hero-slide.is-active .hero-slide__img img { transform: scale(1); }
/* Dark wash on the lower part of the image only — keeps the photo clean up top */
.hero-slide__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(28,22,18,.85) 0%,
    rgba(28,22,18,.70) 13%,
    rgba(28,22,18,.48) 27%,
    rgba(28,22,18,.20) 42%,
    rgba(28,22,18,0)   58%);
}
.hero-slide__body {
  position: relative; z-index: 2;
  padding: 0 48px 128px;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
}
.hero-slide__title {
  margin: 0; color: #fff; max-width: 900px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.75rem, 3.4vw, 3.1rem); line-height: 1.2; letter-spacing: -0.015em;
  opacity: 0; transform: translateY(28px);
  transition: opacity .95s var(--ease) .25s, transform .95s var(--ease) .25s;
}
.hero-slide.is-active .hero-slide__title { opacity: 1; transform: none; }

/* ---- Controls ---- */
.hero-slider__ctrl {
  position: absolute; z-index: 4; bottom: 56px; left: 50%; transform: translateX(-50%);
  max-width: var(--maxw); width: 100%; padding: 0 48px;
  display: flex; align-items: center; gap: 20px;
}
.hero-slider__arrow {
  width: 46px; height: 46px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 50%;
  color: rgba(255,255,255,.85); cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.hero-slider__arrow svg { width: 18px; height: 18px; }
.hero-slider__arrow:hover { background: #fff; border-color: #fff; color: var(--primary); }
.hero-slider__arrow:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.hero-slider__dots { display: flex; align-items: center; gap: 12px; }
.hero-dot {
  padding: 10px 0; background: none; border: 0; cursor: pointer; line-height: 0;
}
.hero-dot span {
  display: block; width: 34px; height: 1px; background: rgba(255,255,255,.35);
  transition: background .35s var(--ease), width .35s var(--ease);
}
.hero-dot:hover span { background: rgba(255,255,255,.7); }
.hero-dot.is-active span { width: 56px; background: #fff; }
.hero-dot:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide__title, .hero-slide__img img { transition: none; }
  .hero-slide__img img { transform: none; }
}

/* Page hero (inner pages) */
.page-hero { background: var(--primary); position: relative; overflow: hidden; padding: 110px 0 80px; }
.page-hero__img { position: absolute; inset: 0; }
.page-hero__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.page-hero__body { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 20px; }
.page-hero .section-rule { margin-bottom: 24px; }
.page-hero__sub { font-size: 1.2rem; color: rgba(255,255,255,.78); max-width: 680px; }
.breadcrumb { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.55); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-people { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--primary-dark); margin-bottom: 24px; }
.breadcrumb-people a { color: var(--primary-dark); }
.breadcrumb-people a:hover { color: var(--primary); }

/* =====================================================
   SECTIONS
   ===================================================== */
/* ---- Gold rule above a section title ---- */
.section-rule {
  width: 30vh; height: 2px; margin: 0 0 28px; border: 0;
  background: var(--gold);
}

/* ---- Two-tone section title: gold lead + italic brown accent ---- */
.section-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.06; letter-spacing: -0.02em;
}
.section-title.capabilities{
	font-size: clamp(1.25rem, 2vw, 1.7rem)
}
.section-title > span { display: block; margin-bottom:8px; }
.section-title__lead   { color: var(--gold); }
.section-title__accent { color: var(--brown); font-style: italic;}

.page-hero__body .section-title__lead   { color: white; }
.page-hero__body .section-title__accent { color: white; font-style: italic;}

/* On dark sections the brown accent would vanish into the background */
.bg-dk .section-title__accent { color: #f2ece1; }

/* ---- Intro "About Us" block (front page) ---- */
.intro-about__text { margin-top: 44px; }
.intro-about__text .txt-link { margin-top: 34px; }

/* ---- Section header row: rule+title on the left, txt-link flush right ---- */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px;
}
.section-head .txt-link { flex-shrink: 0; margin-bottom: 6px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split--3-5 { grid-template-columns: 3fr 5fr; gap: 80px; }
.split--3-9 { grid-template-columns: 3fr 9fr; gap: 50px; }
.split--1-2 { grid-template-columns: 1fr 2fr; gap: 80px; }
.split--image { align-items: stretch; }
.split__img { overflow: hidden; }
.split__img img { width: 100%; height: 100%; object-fit: cover; }

hr { border: none; border-top: 1px solid var(--rule); }

.sec-lbl { font-family: var(--sans); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.sec-divider { border: none; border-top: 1px solid var(--rule); margin-bottom: 60px; }

/* ---- Service list ---- */
.svc-list { list-style: none; }
.svc-item {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px;
  padding: 28px 0; border-top: 1px solid var(--rule);
  transition: padding-left .25s var(--ease);
}
.svc-item:last-child { border-bottom: 1px solid var(--rule); }
.svc-item:hover { padding-left: 10px; }
.svc-item h3 { font-size: 1.5rem; margin: 0; }
.svc-item p  { font-size: .92rem; margin-top: 6px; }
.svc-arrow { font-size: 1.3rem; color: var(--muted); flex-shrink: 0; transition: transform .2s var(--ease); }
.svc-item:hover .svc-arrow { transform: translateX(4px); }

/* ---- Practice card grid ---- */
.prac-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-left: 1px solid var(--rule); }
.prac-card { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 44px 36px; transition: background .25s var(--ease); display: flex; flex-direction: column; }
.prac-card:nth-child(-n+3) { border-top: 1px solid var(--rule); }
.prac-card:hover { background: var(--bg-2); }
.prac-card h3 { font-size: 1.25rem; margin-bottom: 18px; color: var(--gold);}
.prac-card ul { list-style: none; }
.prac-card li { font-size: 1.25; color: var(--mid); padding: 7px 0; border-bottom: 1px solid var(--rule); }
.prac-card li:last-child { border-bottom: none; }

/* ---- Industries grid ---- */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ind-card {
  padding: 40px 32px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .25s var(--ease), color .25s var(--ease);font-size:1.125rem;
}
.ind-card:nth-child(4n) { border-right: none; }
.ind-grid .row-1 { border-top: 1px solid var(--rule); }
.ind-card:hover { color: var(--gold); }
.ind-no { font-family: var(--serif); font-size: .95rem; color: var(--muted); margin-bottom: auto; }
.ind-card h3 { font-size: 1.1rem; margin-top: 24px; line-height: 1.3; }

/* ---- Stats band ---- */
.stats-band { padding: 80px 0; background: var(--bg-dark); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 0 48px; border-right: 1px solid rgba(255,255,255,.15); }
.stat:first-child { padding-left: 0; }
.stat:last-child  { border-right: none; }
.stat__n { font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem); color: #fff; line-height: 1; display: block; }
.stat__l { font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.5); margin-top: 14px; display: block; }

/* ---- Experience list ---- */
.exp-list { list-style: none; }
.exp-list li {
  padding: 28px 0; border-top: 1px solid var(--rule); font-size: 1rem;
}
.exp-list li:last-child { border-bottom: 1px solid var(--rule); }

/* ---- News/Insight cards ---- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--white); display: flex; flex-direction: column;
  border: 1px solid var(--gold);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.news-card:hover { background: var(--bg-2); border-color: var(--blue); }
.news-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.news-card:hover .news-card__img img { transform: scale(1.04); }
.news-card__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.news-card__meta { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.news-card__tag { font-family: var(--sans);  font-size: 1rem; color: var(--gold); }
.news-card__date { font-family: var(--sans); font-size: 1rem; color: var(--muted); }
.news-card h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 12px; }
.news-card p  { font-size: 1.125rem; }
.news-card__link { margin-top: auto; padding-top: 18px; }

/* ---- People cards (small grid, reused on other pages) ---- */
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.person-card { background: var(--white); transition: background .25s; display: block; }
.person-card:hover { background: var(--bg-2); }
.person-card__photo { aspect-ratio: 1/1; background: var(--primary); position: relative; overflow: hidden; }
.person-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.person-card__init {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-size: 3.6rem; color: rgba(255,255,255,.8);
}
.person-card__body { padding: 24px 24px 28px; }
.person-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.person-card__role { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; margin-bottom: 10px; display: block; }
.person-card__email { font-size: .85rem; color: var(--mid); }

/* ---- People listing page — filter + portrait grid ---- */
.people-filter { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 48px; }
.people-filter__btn {
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  padding: 10px 22px; border: 1px solid var(--rule);
  background: transparent; color: var(--muted); cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.people-filter__btn:hover { border-color: var(--primary); color: var(--primary); }
.people-filter__btn.active { border-color: var(--primary); color: var(--primary); background: rgba(75,65,56,.06); }

.people-list-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.people-list-card {
  display: flex; flex-direction: column;
  background: var(--white); text-decoration: none; color: inherit;
  transition: background .25s var(--ease);
}
.people-list-card:hover { background: var(--bg-2); }
.people-list-card.hidden { display: none; }
.people-list-card__photo {
  aspect-ratio: 3/4; overflow: hidden;
  background: var(--primary); position: relative;
}
.people-list-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.people-list-card:hover .people-list-card__photo img { transform: scale(1.04); }
.people-list-card__photo .person-card__init { font-size: 4rem; }
.people-list-card__body {
  padding: 24px 22px 28px; flex: 1; display: flex; flex-direction: column;
}
.people-list-card__group {
  font-family: var(--sans); font-size: .6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em; color: var(--muted); margin-bottom: 6px;
}
.people-list-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.2; }
.people-list-card p { font-size: .86rem; color: var(--mid); line-height: 1.65; flex: 1; }
.people-list-card__link { margin-top: 20px; font-size: .78rem; }

/* =====================================================
   PEOPLE LISTING (template-people.php)
   Lifted out of the template's inline styles so this
   stylesheet owns the page's look.
   ===================================================== */
/* ---- Search + category filter bar ---- */
.people-filter-bar { padding: 48px 0; background: var(--bg-2); border-bottom: 1px solid var(--rule); }
.people-filter-bar__inner { max-width: 960px; margin: 0 auto; }
.people-search { position: relative; margin-bottom: 24px; }
.people-search input {
  width: 100%; padding: 14px 50px 14px 22px;
  font-family: var(--sans); font-size: .98rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--rule); border-radius: 999px;
  transition: border-color .2s var(--ease);
}
.people-search input:focus { outline: none; border-color: var(--gold); }
.people-search__icon {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 19px; height: 19px; color: var(--muted); pointer-events: none;
}
.people-filter-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.people-category-btn {
  padding: 9px 20px; font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .02em; color: var(--mid);
  background: transparent; border: 1px solid var(--rule); border-radius: 999px;
  cursor: pointer; transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.people-category-btn:hover { border-color: var(--gold); color: var(--ink); }
.people-category-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.people-results-count { text-align: center; margin-top: 18px; font-size: .85rem; color: var(--muted); }
.people-category-section.hidden { display: none !important; }
.people-category-header { max-width: 800px; margin-bottom: 56px; }
.people-category-header p { color: var(--muted); font-size: 1.125rem; margin-top: 20px; }

/* ---- Empty state ---- */
.people-no-results { display: none; text-align: center; padding: 80px 20px; }
.people-no-results svg { width: 56px; height: 56px; opacity: .2; margin: 0 auto 18px; color: var(--mid); }
.people-no-results h3 { font-family: var(--sans); font-weight: 600; font-size: 1.1rem; color: var(--mid); margin: 0 0 8px; }
.people-no-results p { font-size: .9rem; color: var(--muted); }

/* ---- Person cards — 4 per row on desktop ---- */
.people-modern-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.people-modern-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--rule); border-radius: 14px;
  overflow: hidden; text-decoration: none; color: inherit;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.people-modern-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(28,22,18,.10);
}
.people-modern-card.hidden { display: none !important; }
.people-modern-card__photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-2); }
.people-modern-card__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.people-modern-card:hover .people-modern-card__photo img { transform: scale(1.04); }
.people-modern-card__init {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 2.4rem; color: var(--gold); opacity: .5;
}
.people-modern-card__badge {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
  font-family: var(--sans); font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.92);
}
.people-modern-card__body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.people-modern-card h3 { font-size: 1.125rem; line-height: 1.25; margin: 0 0 6px; color: var(--gold); }
.people-modern-card__role { font-size: .8rem; color: var(--gold); line-height: 1.45; margin: 0 0 12px; }
.people-modern-card__email {
  font-size: .73rem; color: var(--blue); line-height: 1.4;
  display: flex; align-items: flex-start; gap: 7px; margin-bottom: 12px; word-break: break-word;
}
.people-modern-card__email svg { width: 13px; height: 13px; flex-shrink: 0; opacity: .6; margin-top: 3px; }
.people-modern-card__tags { display: flex; flex-wrap: wrap; gap: 6px;}
.people-modern-card__tag {
  font-size: .67rem; font-weight: 500; padding: 4px 10px;
  background: var(--bg-2); color: var(--mid); border-radius: 999px;
}
.people-modern-card__tag--more { background: transparent; color: var(--muted); padding-left: 2px; }
.people-modern-card__more {
  margin-top: 14px;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .02em;
  color: var(--gold); transition: color .25s var(--ease);
}
.people-modern-card:hover .people-modern-card__more { color: var(--blue); }
.people-modern-card__more svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.people-modern-card:hover .people-modern-card__more svg { transform: translateX(3px); }

@media (max-width: 1100px) { .people-modern-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .people-modern-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 520px)  { .people-modern-grid { grid-template-columns: 1fr; } }

/* ---- Full profile — sticky sidebar layout ---- */
.profile { display: grid; grid-template-columns: 1.3fr 3fr; align-items: start; border-top: 1px solid var(--rule); }
.profile:first-of-type { border-top: 2px solid var(--ink); }

/* Sticky left sidebar */
.profile__sidebar { position: sticky; top: var(--nav-h); background: transparent; color: #fff; overflow: hidden; margin-top: 60px; }
/* Gold spine down the left edge + rounded corners on the portrait */
.profile__photo-wrap {
  width: 100%; aspect-ratio: 3/4; position: relative; overflow: hidden;
  background: var(--mid); display: flex; align-items: center; justify-content: center;
  border-left: 12px solid var(--gold); border-radius: 26px 0 0 26px;
}
.profile__photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(10%); }
.profile__photo-wrap .person-card__init { font-size: 4rem; color: rgba(255,255,255,.7); position: static; }
.profile__sidebar-info { padding: 26px 22px 30px; }
.profile__sidebar-info h3 { font-family: var(--serif); font-size: 1.5rem; color: #fff; line-height: 1.15; margin-bottom: 6px; }
.profile__role { font-family: var(--sans); font-size: .85rem; font-weight: 600; letter-spacing: .1em;; color: var(--gold); display: block; margin-bottom: 0; }
.profile__contacts { border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; margin-top: 16px; }
.profile__contact-row { display: grid; grid-template-columns: 42px 1fr; gap: 4px 8px; margin-bottom: 10px; align-items: baseline; }
.contact-label { font-family: var(--sans); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.38); }
.profile__contact-row a, .profile__contact-row .contact-val { font-size: .78rem; color: rgba(255,255,255,.72); word-break: break-word; line-height: 1.5; }
.profile__contact-row a:hover { color: #fff; }

/* Scrollable right content */
.profile__content { padding: 60px 0 80px 64px; min-height: 80vh; }
.profile__bio p { font-size: 1rem; line-height: 1.8; color: var(--mid); }
.profile__bio p + p { margin-top: 1.2em; }

/* Tag pills — Expertise + Industries */
.profile__tags { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--gold); }
.profile__tags-group { margin-bottom: 28px; }
.profile__tags-heading { font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .18em; color: var(--muted); margin-bottom: 12px; }
.profile__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { font-family: var(--sans); font-size: .78rem; font-weight: 500; padding: 7px 14px; border: 1px solid var(--rule); color: var(--mid); transition: border-color .2s, color .2s; cursor: default; }
.tag-pill:hover { border-color: var(--primary); color: var(--primary); }

/* Experience section */
.profile__exp { margin-top: 52px; padding-top: 44px; border-top: 2px solid var(--primary); }
.profile__exp-label { font-family: var(--sans); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-bottom: 16px; }
.profile__exp-list { list-style: none; }
.profile__exp-list li { padding: 11px 0 11px 22px; font-size: .94rem; color: var(--mid); line-height: 1.7; position: relative; }
.profile__exp-list li::before { content: '◆'; position: absolute; left: 0; color: var(--primary); font-size: .4rem; top: 17px; }

/* Capability single page */
.cap-single-hero { background: var(--bg-dark); padding: 80px 0; }
.cap-single-hero .label--light { margin-bottom: 12px; }
.cap-single-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.8rem); max-width: 720px; margin-bottom: 24px; }
.cap-single-hero p { color: rgba(255,255,255,.65); max-width: 660px; font-size: 1.125rem; }
.cap-nav { background: var(--bg-2); border-bottom: 1px solid var(--rule); position: sticky; top: var(--nav-h); z-index: 100; }
.cap-nav__inner { display: flex; gap: 0; max-width: var(--maxw); margin: 0 auto; padding: 0 48px; overflow-x: auto; }
.cap-nav__link { font-family: var(--sans); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); padding: 16px 20px; border-bottom: 2px solid transparent; white-space: nowrap; transition: color .2s, border-color .2s; }
.cap-nav__link:hover, .cap-nav__link.active { color: var(--primary); border-bottom-color: var(--primary); }
.cap-services-list { list-style: none; }
.cap-services-list li { padding: 20px 0; border-top: 1px solid var(--rule); font-size: 1.125rem; color: var(--mid); display: flex; align-items: baseline; gap: 16px; }
.cap-services-list li::before { content: '—'; color: var(--primary); font-size: .8rem; flex-shrink: 0; }
.cap-related-people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.cap-person-card { background: var(--white); padding: 28px; transition: background .2s; }
.cap-person-card:hover { background: var(--bg-2); }
.cap-person-card h4 { font-size: 1.1rem; margin-bottom: 4px; color: var(--gold); }
.cap-person-card .profile__role { margin-bottom: 8px; }
.cap-person-card a { font-size: .82rem; color: var(--mid); }
.cap-person-card a:hover { color: var(--primary); }

/* ---- Values ---- */
.values-list { list-style: none; }
.value-item { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: baseline; padding: 36px 0; border-top: 1px solid rgba(255,255,255,.12); }
.value-item:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.value-item h3 { font-size: 1.8rem; }
.value-item p  { font-size: 1.125rem; margin: 0; }

/* ---- Pull quote ---- */
.pull-quote { padding: 80px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.pull-quote blockquote {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.2; color: var(--primary); font-style: italic; max-width: 900px;
}

/* ---- CTA band (legacy) ---- */
.cta-band { background: var(--primary); padding: 80px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

/* ---- Careers / Join Us split ---- */
.cta-join {
  display: grid; grid-template-columns: 65fr 35fr;
  min-height: 460px;
  background: var(--primary);
}
.cta-join__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px 72px 80px;
}
.cta-join__text .label { color: rgba(255,255,255,.55); margin-bottom: 16px; }
.cta-join__text h2 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); color: #fff; margin-bottom: 20px; }
.cta-join__text p { color: rgba(255,255,255,.75); max-width: 540px; margin-bottom: 40px; }
.cta-join__explore {
  display: inline-flex; align-items: center; gap: 12px;
  padding-left: 20px; border-left: 3px solid rgba(255,255,255,.5);
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: #fff;
  transition: opacity .2s;
}
.cta-join__explore:hover { opacity: .7; }
.cta-join__img {
  display: flex; align-items: center; justify-content: center;
  padding: 48px;
}
.cta-join__img img {
  width: 100%; height: auto;
  max-height: 480px; object-fit: cover;
  border-radius: 4px;
  filter: grayscale(25%) sepia(15%);
}

/* ---- Contact layout ---- */
.contact-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.info-block h4 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.3rem; letter-spacing: 0; text-transform: none;
  color: var(--gold); margin-bottom: 10px;
}
.info-block + .info-block { margin-top: 32px; }
.info-block p, .info-block a { font-size: 1.125rem; line-height: 1.75; color: var(--mid); }
.info-block a:hover { color: var(--primary); }
.info-line {
  display: flex; align-items: center; gap: 10px;
  font-size: .98rem; line-height: 1.7; color: var(--mid);
  margin-bottom: 8px; transition: color .2s var(--ease);
}
.info-line:last-child { margin-bottom: 0; }
.info-line:hover { color: var(--blue); }
.info-line svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); margin-top: 5px; }
.map-frame { width: 100%; height: 100%; min-height: 440px; border: none; display: block; }
.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-row a { width: 44px; height: 44px; border: 1px solid var(--rule); display: grid; place-items: center; color: var(--mid); transition: all .2s; }
.social-row a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.social-row svg { width: 20px; height: 20px; }

/* Social media grid (Contact page) */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--rule);
  background: var(--rule);
  max-width: 780px;
}
.social-card {
  background: #fff;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: background .2s;
}
.social-card:hover { background: var(--bg-2); }
.social-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.social-card__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}


/* ---- Award cards ---- */
.award-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.award-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  overflow: hidden; transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.award-card:hover { border-color: rgba(255,255,255,.35); transform: translateY(-4px); }
.award-card__img { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 250px; }
.award-card__img img { max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.award-card__title { padding: 14px 16px; background: var(--blue); font-family: var(--sans); font-size: .65rem; font-weight: 700; letter-spacing: .1em; color: var(--gold); line-height: 1.5; text-align: center; margin: 0; border-top: 1px solid var(--blue); }
.award-pagination { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.award-pagination a, .award-pagination span.current {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  border: 1.5px solid var(--rule); color: var(--ink); text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.award-pagination a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.award-pagination span.current { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ---- Career list ---- */
.career-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.career-item {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--white); border: 1px solid var(--gold); border-radius: 14px;
  padding: 32px 28px 34px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.career-item:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 34px rgba(28,22,18,.10);
  transform: translateY(-3px);
}
.career-item > div { flex: 1; }
.career-item__date { font-family: var(--sans); font-size: .92rem; color: var(--gold); display: block; margin-bottom: 8px; }
.career-item h3 { font-size: 1.35rem; margin-bottom: 10px; }
.career-item p  { font-size: .92rem; }
.career-item .txt-link { margin-top: 24px; }

/* ---- Contact form ---- */
.form-grid { display: grid; gap: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); display: block; margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; border: 1px solid var(--rule); background: #fff; font-family: var(--sans); font-size: 1rem; color: var(--ink); outline: none; }
.field input:focus, .field textarea:focus { border-color: var(--primary); }

/* ---- Footer ---- */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.6); padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr 3fr; gap: 50px; padding-bottom: 56px; border-bottom: 1px solid var(--gold);; }
.footer-brand .logo__img { height: 60px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.5); max-width: 320px; }
.footer-col h4 { font-family: var(--sans); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col span { font-size: .9rem; color: rgba(255,255,255,.6); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: center; padding: 24px 0; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-col p { font-size: .9rem; color: rgba(255, 255, 255, .6);}

/* ---- Address column: Our Office / Contact Us / Connect with Us ---- */
.footer-group { margin-bottom: 26px; }
.footer-group:last-child { margin-bottom: 0; }
.footer-group h4 { font-family: var(--sans); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.footer-group p { line-height: 1.9; }
.footer-social-line {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 8px;
  transition: color .2s;
}
.footer-social-line:last-child { margin-bottom: 0; }
.footer-social-line:hover { color: #fff; }
.footer-social-line svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ---- Reveal animation ---- */
.rev { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rev.in { opacity: 1; transform: none; }
/* .rev.in ul,.rev.in ol{ padding: 5px 0px 20px 20px; } */
.rev.in ul,.rev.in ol{ padding-left:20px; }

/* ---- Cookie consent ---- */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 1000;
  max-width: 1100px; margin: 0 auto;
  background: var(--primary-dark); color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 32px;
  padding: 24px 28px;
  transform: translateY(140%); transition: transform .5s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__text { flex: 1; }
.cookie-banner__text h4 { font-family: var(--serif); font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.cookie-banner__text p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; }
.cookie-banner__text a { color: #fff; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner .btn { padding: 12px 26px; font-size: .78rem; }
.cookie-btn-decline { color: #fff; border-color: rgba(255,255,255,.4); }
.cookie-btn-decline:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* ─────────────────────────────────────────────────────
   LARGE TABLET (max-width: 1100px)
   ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .dropdown__inner { grid-template-columns: 200px 1fr; gap: 40px; }
  .drop-cols { grid-template-columns: repeat(2, 1fr); }
  .prac-grid { grid-template-columns: 1fr 1fr; }
  .prac-card:nth-child(-n+3) { border-top: none; }
  .prac-card:nth-child(-n+2) { border-top: 1px solid var(--rule); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .stat:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .award-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-related-people { grid-template-columns: repeat(2, 1fr); }
  .split--3-5 { grid-template-columns: 1fr 1fr; gap: 60px; }
  .split--1-2 { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────────────────────────────────────────────────
   TABLET (max-width: 900px)
   ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* ---- Container & Spacing ---- */
  .container { padding: 0 32px; }
  .py { padding-top: 80px; padding-bottom: 80px; }
  
  /* ---- Header/Navigation ---- */
  .site-header__inner { 
    height: auto; 
    min-height: 70px; 
    align-items: center; 
    padding: 0 32px;
    justify-content: space-between;
  }
  .logo { padding-right: 0; border-right: none; }
  .logo__img { height: 60px; }
  
  /* Hide desktop nav, show mobile controls */
  .header-nav-stack { display: none; }
  .mob-controls { display: flex; }
  .nav-right { display: none !important; }
  
  /* Show mobile nav element */
  .nav-mobile {
    display: block;
  }

  /* Mobile menu overlay — the nav-list inside .nav-mobile */
  .nav-mobile .nav-list { 
    display: none;
  }
  .nav-mobile .nav-list.mob-open {
    display: flex;
    flex-direction: column; 
    align-items: stretch; 
    height: calc(100vh - 70px);
    position: fixed; 
    left: 0;
    right: 0;
    top: 70px; 
    bottom: 0;
    background: #fff; 
    z-index: 999;
    overflow-y: auto; 
    padding: 0 0 40px;
  }
  .nav-mobile .nav-item { flex-direction: column; align-items: stretch; border-bottom: 1px solid var(--rule); }
  .nav-mobile .nav-btn { padding: 20px 32px; font-size: 1.125rem; justify-content: space-between; height: auto; }
  .nav-mobile .nav-btn::after { display: none; }

  /* Utility items (Our Firm, Contact, Careers) — separator + muted style */
  .nav-mobile .nav-item--utility:first-of-type {
    border-top: 2px solid var(--rule);
    margin-top: 8px;
  }
  .nav-mobile .nav-btn--link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 32px;
    font-family: var(--sans);
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink);
    background: none;
    border: none;
    text-decoration: none;
    transition: color .2s;
  }
  .nav-mobile .nav-btn--link:hover { color: var(--primary); }

  /* Mobile dropdown */
  .nav-mobile .dropdown { position: static; box-shadow: none; border-top: none; display: none; background: var(--bg-2); }
  .nav-mobile .nav-item.is-open .dropdown { display: block; }
  .nav-mobile .dropdown__inner { padding: 16px 32px 28px; grid-template-columns: 1fr; gap: 24px; }
  .nav-mobile .drop-intro { display: none; }
  .nav-mobile .drop-cols { grid-template-columns: 1fr; gap: 20px; }
  .nav-mobile .drop-col h4 { font-size: .75rem; padding-bottom: 10px; margin-bottom: 12px; }
  .nav-mobile .drop-col a { padding: 13px 0; font-size: 1rem; }

  
  /* ---- Layouts ---- */
  .split, .split--3-5, .split--3-9, .split--1-2, .contact-cols { grid-template-columns: 1fr; gap: 48px; }
  .split--image { grid-template-columns: 1fr; }
  
  /* ---- Profile Page ---- */
  .profile { grid-template-columns: 1fr; }
  .profile__sidebar { position: static; }
  .profile__content { padding: 48px 0 60px; padding-left: 0; }
/*   .profile__photo-wrap { aspect-ratio: 16/9; } */
  
  /* ---- Grids ---- */
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .people-list-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .prac-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .ind-list-grid { grid-template-columns: 1fr 1fr; }
  .award-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-related-people { grid-template-columns: 1fr; }
  
  /* ---- Career Items ---- */
  .career-list { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .career-item { padding: 28px 24px 30px; }
  
  /* ---- Values ---- */
  .value-item { grid-template-columns: 1fr; gap: 12px; }
  
  /* ---- CTA Join ---- */
  .cta-join { grid-template-columns: 1fr; }
  .cta-join__text { padding: 60px 32px; }
  .cta-join__img { min-height: 320px; padding: 32px; }
  
  /* ---- Hero ---- */
  .hero { min-height: 520px; height: 70vh; }
  .hero__body { padding: 0 32px 60px; }
  .hero__sub { font-size: 1.1rem; max-width: 480px; }
  .hero__scroll { right: 32px; }
  .hero-slide__body { padding: 0 32px 112px; }
  .hero-slider__ctrl { padding: 0 32px; bottom: 44px; }
  
  /* ---- Page Hero ---- */
  .page-hero { padding: 90px 0 70px; }
  .page-hero h1 { font-size: 2.8rem; }
  .page-hero__sub { font-size: 1.1rem; }
  
  /* ---- Stats ---- */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat { padding: 0 32px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { padding-left: 0; }
  
  /* ---- Lang Switcher Mobile ---- */
  .lang-switcher { display: flex; }
  .lang-btn { font-size: 1.4rem; padding: 6px 10px; }
}

/* ─────────────────────────────────────────────────────
   MOBILE (max-width: 640px)
   ───────────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* ---- Container & Spacing ---- */
  .container { padding: 0 20px; }
  .py { padding-top: 60px; padding-bottom: 60px; }
  .py-sm { padding-top: 48px; padding-bottom: 48px; }
  
  /* ---- Typography ---- */
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  p, li { font-size: 1rem !important; }
  
  /* ---- Header/Navigation ---- */
  .site-header__inner { 
    min-height: 64px; 
    padding: 0 20px;
    justify-content: space-between;
  }
  .logo__img { height: 52px; }
  
  /* Mobile menu */
  .nav-mobile .nav-list { display: none; }
  .nav-mobile .nav-list.mob-open { 
    top: 64px; 
    padding: 0 0 32px; 
  }
  
  .nav-mobile .nav-btn { padding: 18px 20px; font-size: 1rem; }
  .nav-mobile .dropdown__inner { padding: 12px 20px 24px; }
  .nav-mobile .drop-col a { font-size: .95rem; }

  .mob-controls { gap: 10px; }
  .lang-btn { font-size: 1.3rem; padding: 4px 8px; }
  
  /* ---- Hero ---- */
  .hero { min-height: 480px; height: 50vh; }
  .hero__body { padding: 0 20px 48px; }
  .hero h1 { font-size: 2.2rem; margin-bottom: 20px; }
  .hero__sub { font-size: 1rem; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }
  .hero-slide__body { padding: 0 20px 100px; }
  .hero-slide__title { font-size: 1.9rem; line-height: 1.22; }
  .hero-slider__ctrl { padding: 0 20px; bottom: 36px; gap: 14px; }
  .hero-slider__arrow { width: 40px; height: 40px; }
  .hero-slider__arrow svg { width: 16px; height: 16px; }
  .hero-dot span { width: 24px; }
  .hero-dot.is-active span { width: 40px; }
  
  /* ---- Page Hero ---- */
  .page-hero { padding: 80px 0 60px; }
  .page-hero h1 { font-size: 2.2rem; margin-bottom: 16px; }
  .page-hero__sub { font-size: 1rem; }
  .breadcrumb { font-size: .68rem; margin-bottom: 20px; }
  
  /* ---- Grids ---- */
  .people-grid { grid-template-columns: 1fr; }
  .people-list-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; gap: 20px; }
  .prac-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .ind-list-grid { grid-template-columns: 1fr; }
  .ind-list-card { padding: 28px 20px 32px; }
  .award-grid { grid-template-columns: 1fr; gap: 16px; }
  .cap-related-people { grid-template-columns: 1fr; }

  /* ---- Section header row ---- */
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  
  /* ---- Stats ---- */
  .stats-band { padding: 60px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 36px 16px; }
  .stat { padding: 0 16px; }
  .stat__n { font-size: 2.5rem; }
  .stat__l { font-size: .7rem; margin-top: 10px; }
  
  /* ---- Career Items ---- */
  .career-list { grid-template-columns: 1fr; gap: 20px; }
  .career-item { padding: 26px 20px 28px; }
  .career-item h3 { font-size: 1.25rem; }
  .career-item p { font-size: .9rem; }
  .career-item .txt-link { margin-top: 18px; }
  
  /* ---- Profile ---- */
  .profile__content { padding: 36px 0 48px; }
  .profile__sidebar-info { padding: 24px 20px; }
  .profile__sidebar-info h3 { font-size: 1.3rem; }
  .profile__bio p { font-size: .95rem; line-height: 1.75; }
  .profile__tags { margin-top: 36px; padding-top: 32px; }
  .tag-pill { font-size: .75rem; padding: 6px 12px; }
  .profile__exp { margin-top: 40px; padding-top: 36px; }
  .profile__exp-list li { font-size: .9rem; padding: 10px 0 10px 18px; }
  
  /* ---- Capability Single ---- */
  .cap-single-hero { padding: 60px 0; }
  .cap-single-hero h1 { font-size: 2rem; margin-bottom: 20px; }
  .cap-single-hero p { font-size: 1rem; }
  .cap-nav__inner { padding: 0 20px; }
  .cap-nav__link { font-size: .68rem; padding: 14px 16px; }
  
  /* ---- Forms ---- */
  .form-row-2 { grid-template-columns: 1fr; }
  .field label { font-size: .7rem; margin-bottom: 6px; }
  
  /* ---- CTA Join ---- */
  .cta-join { grid-template-columns: 1fr; }
  .cta-join__text { padding: 48px 20px; }
  .cta-join__text h2 { font-size: 1.75rem; margin-bottom: 16px; }
  .cta-join__text p { font-size: .95rem; margin-bottom: 32px; }
  .cta-join__img { min-height: 280px; padding: 24px; }
  
  /* ---- CTA Band ---- */
  .cta-band { padding: 60px 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-band h2 { font-size: 1.8rem; }
  
  /* ---- Footer ---- */
  .footer-brand .logo__img { height: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-col h4 { font-size: .7rem; margin-bottom: 14px; }
  .footer-col ul li a { font-size: .88rem; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  
  /* ---- Cookie Banner ---- */
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; flex-direction: column; align-items: stretch; gap: 16px; padding: 20px 18px; }
  .cookie-banner__text { font-size: .88rem; }
  .cookie-banner__actions { flex-direction: column; width: 100%; }
  .cookie-banner .btn { width: 100%; justify-content: center; font-size: .8rem; padding: 12px 24px; }

  /* ---- Social Grid ---- */
  .social-grid { grid-template-columns: 1fr; max-width: 100%; }
  .social-card { padding: 24px 20px; gap: 16px; }
  .social-card__icon { width: 40px; height: 40px; }
  .social-card__name { font-size: 1.125rem; }


  /* ---- Buttons ---- */
  .btn { padding: 13px 28px; font-size: .82rem; }
  .txt-link { font-size: .8rem; gap: 6px; }
  
  /* ---- Labels ---- */
  .label { font-size: .68rem; margin-bottom: 16px; }
  
  /* ---- People Filter ---- */
  .people-filter__btn { padding: 8px 16px; font-size: .7rem; }
  
  /* ---- Experience List ---- */
  .exp-list li { padding: 24px 0; font-size: .95rem; }
  
  /* ---- Service List ---- */
  .svc-item { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
  .svc-item h3 { font-size: 1.3rem; }
  .svc-item p { font-size: .88rem; margin-top: 8px; }
  .svc-arrow { font-size: 1.1rem; }
  
  /* ---- Practice Cards ---- */
  .prac-card { padding: 32px 24px; }
  .prac-card h3 { font-size: 1.2rem; margin-bottom: 14px; font-style}
  .prac-card li { font-size: .88rem; padding: 6px 0; }
  
  /* ---- News Cards ---- */
  .news-card__body { padding: 24px 20px 28px; }
  .news-card__tag { font-size: 1rem; }
  .news-card__meta { margin-bottom: 12px; }
  .news-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
  .news-card p { font-size: 1.125rem; }
  
  /* ---- Person Cards ---- */
  .person-card__body { padding: 20px 18px 24px; }
  .person-card h3 { font-size: 1.15rem; }
  .person-card__role { font-size: .72rem; }
  .person-card__email { font-size: .82rem; }
  
  /* ---- Values ---- */
  .value-item { padding: 28px 0; }
  .value-item h3 { font-size: 1.5rem; }
  .value-item p { font-size: .95rem; }
  
  /* ---- Pull Quote ---- */
  .pull-quote { padding: 60px 0; }
  .pull-quote blockquote { font-size: 1.6rem; line-height: 1.3; }
  
  /* ---- Contact ---- */
  .contact-cols { gap: 48px; }
  .info-block h4 { font-size: 1.15rem; margin-bottom: 8px; }
  .info-block p, .info-block a { font-size: .92rem; line-height: 1.8; }
  .info-block + .info-block { margin-top: 28px; }
  .social-row a { width: 40px; height: 40px; }
  .social-row svg { width: 18px; height: 18px; }
  .map-frame { min-height: 320px; }
}

/* ─────────────────────────────────────────────────────
   EXTRA SMALL MOBILE (max-width: 400px)
   ───────────────────────────────────────────────────── */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .site-header__inner { padding: 0 16px; }
  .logo__img { height: 48px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero__body { padding: 0 16px 40px; }
  .hero-slide__body { padding: 0 16px 92px; }
  .hero-slide__title { font-size: 1.65rem; }
  .hero-slider__ctrl { padding: 0 16px; bottom: 30px; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat { padding: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 32px; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
  .lang-btn { font-size: 1.2rem; padding: 4px 8px; }
}
.text-justify { text-align: justify; }

/* ── Industry listing cards (template-industries.php) ── */
.ind-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.ind-list-card {
  background: #fff;
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: background .2s;
}
a.ind-list-card:hover { background: var(--bg-2); }
.ind-list-card__no {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--muted);
  opacity: .35;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.ind-list-card h3 { font-size: 1.15rem; line-height: 1.25; margin-bottom: 12px; }
.ind-list-card p  { font-size: .86rem; color: var(--mid); line-height: 1.65; flex: 1; }

/* ── Single industry: other industries nav ── */
.ind-single-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ind-single-nav__link {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid var(--rule);
  border-radius: 40px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.ind-single-nav__link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.ind-single-nav__link--active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  cursor: default;
}

@media (max-width: 900px) {
  .ind-list-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ind-list-grid { grid-template-columns: 1fr; }
  .ind-list-card { padding: 24px 20px 28px; }
}
.d-none{
  display: none;
}
li > p {
  padding-left: 8px;
}


/* ---- Representative Experience accordion ---- */
.exp-accordion { border-top: 1px solid var(--rule); }
.exp-item { border-bottom: 1px solid var(--rule); }
.exp-item__head {
  width: 100%; display: flex; align-items: center; gap: 24px;
  padding: 26px 4px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: inherit; color: var(--ink);
}
.exp-item__num {
  font-family: var(--serif); font-size: 1.1rem; color: var(--muted);
  opacity: .5; min-width: 32px; flex-shrink: 0;
}
.exp-item__title {
  flex: 1; font-family: var(--serif); font-size: 1.15rem;
  color: var(--gold); transition: color .2s var(--ease);
}
.exp-item__head:hover .exp-item__title { color: var(--primary); }
.exp-item__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.exp-item__icon::before, .exp-item__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.exp-item__icon::before { width: 18px; height: 1.5px; transform: translate(-50%, -50%); }
.exp-item__icon::after  { width: 1.5px; height: 18px; transform: translate(-50%, -50%); }
.exp-item.is-open .exp-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.exp-item__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.exp-item.is-open .exp-item__body { grid-template-rows: 1fr; }
.exp-item__body-inner { overflow: hidden; }
.exp-item__body ul { list-style: none; padding: 0 4px 28px 56px; }
.exp-item__body li {
  position: relative; font-size: 1.125rem; color: var(--mid); line-height: 1.75;
  padding: 5px 0 8px 22px; text-align: justify;
}
.exp-item__body li::before {
  content: ""; position: absolute; left: 0; top: 17px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--mid);
}

@media screen and (min-width: 1024px) {
  .prec-card-title {
    height: 62px;
  }
}

.news-style{
	figure{
		margin-bottom: 1.1rem;
	}
ul {
  list-style-type: disc !important;
}

ol{
	margin: 1.1em 0 1.1em 0;	
}
ol[type="i"], ol[type="I"] {
  margin: 0;
}

/* Tingkat 2 (Sub-list): Hilangkan bulat hitam & ganti dengan strip (-) */
ul ul {
  list-style-type: none !important; /* !important memaksa bulat hitam bawaan hilang */
  padding-left: 1.5rem;
}

ul ul > li {
  position: relative;
  list-style: none !important; /* Mencegah style bawaan di tingkat <li> */
}

ul ul > li::before {
  content: "-";
  position: absolute;
  left: -1rem;
}


/* --- Ordered List (ol) Khusus Angka 1) 2) 3) --- */

ol:not([type]) {
  list-style-type: none !important;
  counter-reset: item;
  padding-left: 1.5rem;
}

ol:not([type]) > li {
  counter-increment: item;
  position: relative;
  list-style: none !important;
}

ol:not([type]) > li::before {
  content: counter(item) ") ";
  position: absolute;
  left: -1.5rem;
  font-weight: bold;
}
	li{
		padding-left: 30px;
		margin-bottom: 1.1em;
	}
	li,p{
		text-align:justify;
	}
	
ol[type="a"] {
  list-style-type: none !important; /* Hilangkan a. bawaan */
  counter-reset: alpha-item;        /* Inisialisasi counter huruf */
  padding-left: 1.5rem;
}

ol[type="a"] > li {
  counter-increment: alpha-item;    /* Tambahkan urutan huruf */
  position: relative;
  list-style: none !important;
}

ol[type="a"] > li::before {
  content: "(" counter(alpha-item, lower-alpha) ") "; /* Menghasilkan (a), (b), (c) */
  position: absolute;
  left: -1.5rem;
/*   font-weight: bold; */
}
	.news-without-li-enter li{
		padding-left: 8px;
		margin-bottom:0;
	}
	.news-without-li-enter ol[type="a"] > li {
		margin-bottom: 1.1em;
		padding-left: 30px;
	}
}