/* ============================================================
   HOLDING ADVISORY LLC — MASTER STYLESHEET
   Palette: #1B2A4A navy | #B8860B gold | #F8F7F4 off-white
            #2C3E50 charcoal | #3D2B00 dark gold text
   ============================================================ */

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

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #F8F7F4;
  color: #2C3E50;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'EB Garamond', serif;
  line-height: 1.25;
  color: #1B2A4A;
}

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

/* ── Typography Scale ───────────────────────────────────── */
.display-xl { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 500; letter-spacing: -0.01em; }
.display-lg { font-size: clamp(2rem, 3.5vw, 3rem);   font-weight: 500; letter-spacing: -0.01em; }
.display-md { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 500; }
.display-sm { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
.body-lg    { font-size: 1.125rem; font-weight: 300; line-height: 1.8; }
.body-md    { font-size: 1rem;     font-weight: 400; line-height: 1.7; }
.label      { font-size: 0.75rem;  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

/* ── Color Utilities ────────────────────────────────────── */
.text-navy  { color: #1B2A4A; }
.text-gold  { color: #B8860B; }
.text-chalk { color: #F8F7F4; }
.text-mid   { color: #5A6478; }
.bg-navy    { background: #1B2A4A; }
.bg-gold    { background: #B8860B; }
.bg-chalk   { background: #F8F7F4; }
.bg-white   { background: #FFFFFF; }
.bg-dark    { background: #111820; }

/* ── Layout ─────────────────────────────────────────────── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; }

.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ── Gold Rule ──────────────────────────────────────────── */
.gold-rule {
  width: 3rem; height: 2px;
  background: #B8860B;
  margin-bottom: 1.5rem;
}
.gold-rule-center { margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-gold {
  background: #B8860B;
  color: #F8F7F4;
}
.btn-gold:hover { background: #9a720a; }

.btn-navy {
  background: #1B2A4A;
  color: #F8F7F4;
}
.btn-navy:hover { background: #243660; }

.btn-outline-chalk {
  background: transparent;
  color: #F8F7F4;
  border: 1px solid rgba(248,247,244,0.45);
}
.btn-outline-chalk:hover {
  background: rgba(248,247,244,0.08);
  border-color: #B8860B;
  color: #B8860B;
}

.btn-outline-navy {
  background: transparent;
  color: #1B2A4A;
  border: 1px solid #1B2A4A;
}
.btn-outline-navy:hover { background: #1B2A4A; color: #F8F7F4; }

/* ── Navigation ─────────────────────────────────────────── */
/* Prevent page scroll when mobile menu is open */
body.nav-open { overflow: hidden; }

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  background: rgba(27, 42, 74, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,134,11,0.2);
  padding: 0 2.5rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
/* Horizontal lockup — SVG, crisp at any DPI */
.nav-logo img.logo-main {
  height: 46px;
  width: auto;
  display: block;
  /* SVG is already exact color — no filter needed */
  filter: none;
}
/* Hide legacy text block — name is embedded in the new horizontal logo */
.nav-logo-text { display: none; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,247,244,0.75);
  padding: 0.5rem 0.9rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: #B8860B; }

.nav-links .dropdown { position: relative; }

/* Bridge pseudo-element fills the gap between trigger and menu */
.nav-links .dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 12px; /* covers any gap */
  background: transparent;
  display: none;
}
.nav-links .dropdown:hover::after { display: block; }

.nav-links .dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 4px); left: 0;
  background: #1B2A4A;
  border: 1px solid rgba(184,134,11,0.25);
  min-width: 240px;
  padding: 0.5rem 0;
  z-index: 200;
  /* Small delay prevents accidental flicker on cursor drift */
  transition: opacity 0.05s ease;
}
/* Desktop only — hover reveals dropdown. Wrapped in (hover:hover) so
   touch devices (iOS/Android) never get persistent :hover state causing
   the mobile accordion to stay open after the .open class is removed. */
@media (hover: hover) {
  .nav-links .dropdown:hover .dropdown-menu { display: block; }
}
.nav-links .dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  color: rgba(248,247,244,0.75);
  border-left: 2px solid transparent;
}
.nav-links .dropdown-menu a:hover {
  color: #B8860B;
  border-left-color: #B8860B;
  background: rgba(184,134,11,0.06);
}

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: #F8F7F4; transition: all 0.3s;
}

/* ── Page Header (Interior Pages) ───────────────────────── */
.page-header {
  background: #1B2A4A;
  padding: 8rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,134,11,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,134,11,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .label { color: #B8860B; margin-bottom: 0.75rem; }
.page-header h1 { color: #F8F7F4; margin-bottom: 1rem; }
.page-header p  { color: rgba(248,247,244,0.7); max-width: 600px; font-size: 1.1rem; line-height: 1.75; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: #1B2A4A;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(184,134,11,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,134,11,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(184,134,11,0.07) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* ── Hero logo mark — seamless navy-bg seal above headline ─────── */
.hero-logo-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-logo-img {
  /* width matches the headline text block width (~640px at desktop) */
  width: clamp(280px, 44vw, 520px);
  height: auto;
  display: block;
  /* navy bg logo — no border needed; gentle gold glow ties it to grid */
  filter: drop-shadow(0 0 28px rgba(184,134,11,0.12));
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ── Hero eyebrow — flanked by gold lines ────────────────────── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.hero-eyebrow-line {
  width: 2rem; height: 1px; background: #B8860B;
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #B8860B;
}

/* ── Hero headline ───────────────────────────────────────────── */
.hero h1 {
  color: #F8F7F4;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.1;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: rgba(248,247,244,0.6);
}

/* ── Hero inline trust bar ───────────────────────────────────── */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,247,244,0.45);
}
.hero-trust-sep {
  color: rgba(184,134,11,0.4);
  font-weight: 300;
  font-size: 1rem;
}

/* ── Hero sub-headline ───────────────────────────────────────── */
.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(248,247,244,0.58);
  max-width: 580px;
  line-height: 1.8;
  margin: 0 auto 2.5rem;
}

/* ── Hero CTA row ────────────────────────────────────────────── */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-lg {
  padding: 0.95rem 2.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

/* ── Metrics Bar ────────────────────────────────────────── */
.metrics-bar {
  background: #111820;
  border-top: 1px solid rgba(184,134,11,0.15);
  border-bottom: 1px solid rgba(184,134,11,0.15);
  padding: 2.2rem 0;
}
.metrics-bar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.metric-item {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(248,247,244,0.07);
}
.metric-item:last-child { border-right: none; }
.metric-num {
  font-family: 'EB Garamond', serif;
  font-size: 2.2rem; font-weight: 500;
  color: #B8860B;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.metric-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(248,247,244,0.45);
}

/* ── Section Intros ─────────────────────────────────────── */
.section-intro { text-align: center; margin-bottom: 4rem; }
.section-intro .label { color: #B8860B; margin-bottom: 0.6rem; }
.section-intro h2 { margin-bottom: 1rem; }
.section-intro p {
  max-width: 600px; margin: 0 auto;
  color: #5A6478; font-size: 1.05rem;
}

/* ── Service Cards (Home) ───────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }

.service-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(27,42,74,0.14);
  border-top: 3px solid rgba(27,42,74,0.18);
  position: relative;
  transition: all 0.3s ease;
  background: #fff;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(27,42,74,0.1);
  transform: translateY(-3px);
  border-top-color: #B8860B;
}

.service-card.featured {
  background: #1B2A4A;
  border: 1px solid #1B2A4A;
  border-top: 3px solid #B8860B;
}
.service-card.featured h3 { color: #F8F7F4; }
.service-card.featured p  { color: rgba(248,247,244,0.65); }
.service-card.featured .card-number { color: rgba(184,134,11,0.55); }
.service-card.featured .card-link   { color: #B8860B; }
.service-card.featured .card-link:hover { color: #F8F7F4; }

.card-number {
  font-family: 'EB Garamond', serif;
  font-size: 3.5rem; font-weight: 400;
  color: rgba(27,42,74,0.22);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-size: 1.25rem; font-weight: 500;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem; line-height: 1.75;
  color: #5A6478;
  margin-bottom: 1.5rem;
}
.card-link {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #1B2A4A;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.7rem; }

/* ── Capabilities List ──────────────────────────────────── */
.cap-list { margin-top: 1rem; }
.cap-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(27,42,74,0.07);
  font-size: 0.9rem; color: #2C3E50;
}
.cap-list li:last-child { border-bottom: none; }
.cap-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 4px; height: 4px;
  border-radius: 50%; background: #B8860B;
  margin-top: 0.55rem;
}

/* ── Engagement Highlights ──────────────────────────────── */
.engagement-card {
  background: #fff;
  border: 1px solid rgba(27,42,74,0.1);
  border-left: 3px solid #B8860B;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.25s;
}
.engagement-card:hover { box-shadow: 0 8px 32px rgba(27,42,74,0.09); }

.engagement-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.tag {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}
.tag-sector   { background: rgba(27,42,74,0.08); color: #1B2A4A; }
.tag-size     { background: rgba(184,134,11,0.1); color: #7a5a06; }
.tag-type     { background: rgba(44,62,80,0.08); color: #2C3E50; }

.engagement-card h4 {
  font-size: 1.1rem; font-weight: 500;
  color: #1B2A4A; margin-bottom: 0.6rem;
}
.engagement-card p {
  font-size: 0.92rem; line-height: 1.75;
  color: #5A6478;
}
.engagement-outcome {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(27,42,74,0.07);
}
.outcome-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #B8860B; flex-shrink: 0; padding-top: 0.15rem;
}
.outcome-text {
  font-size: 0.88rem; color: #2C3E50;
}

/* ── Industries Strip ───────────────────────────────────── */
.industries-strip { background: #fff; padding: 3.5rem 0; }
.industries-grid  {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0;
}
.industry-item {
  padding: 1rem 2rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(27,42,74,0.45);
  border-right: 1px solid rgba(27,42,74,0.1);
  transition: color 0.2s;
}
.industry-item:last-child { border-right: none; }
.industry-item:hover { color: #B8860B; }

/* ── Philosophy Pullquote ───────────────────────────────── */
.pullquote-section { background: #1B2A4A; padding: 5rem 0; }
.pullquote {
  max-width: 760px; margin: 0 auto;
  text-align: center;
}
.pullquote blockquote {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic; font-weight: 400;
  color: #F8F7F4; line-height: 1.55;
  margin-bottom: 1.5rem;
}
.pullquote cite {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #B8860B; font-style: normal;
}

/* ── Approach Grid (4 pillars) ──────────────────────────── */
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.approach-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(27,42,74,0.1);
}
.approach-item:last-child { border-right: none; }
.approach-num {
  font-family: 'EB Garamond', serif;
  font-size: 2rem; color: rgba(184,134,11,0.3);
  margin-bottom: 0.5rem;
}
.approach-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.approach-item p  { font-size: 0.87rem; color: #5A6478; line-height: 1.7; }

/* ── CTA Block ──────────────────────────────────────────── */
.cta-block {
  background: #1B2A4A;
  padding: 5rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,134,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,134,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-block .container { position: relative; z-index: 1; }
.cta-block .label { color: #B8860B; margin-bottom: 0.75rem; }
.cta-block h2 { color: #F8F7F4; margin-bottom: 1rem; }
.cta-block p  { color: rgba(248,247,244,0.6); max-width: 520px; margin: 0 auto 2rem; font-size: 1rem; }
.cta-actions  { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Service Detail Page ─────────────────────────────────── */
.service-detail { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
.service-sidebar {
  background: #1B2A4A;
  padding: 2.5rem 2rem;
  position: sticky; top: 92px;
}
.service-sidebar h4 {
  color: #B8860B; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.service-sidebar ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(248,247,244,0.08);
}
.service-sidebar ul li a {
  font-size: 0.85rem; color: rgba(248,247,244,0.65);
  transition: color 0.2s;
}
.service-sidebar ul li a:hover,
.service-sidebar ul li a.active { color: #B8860B; }
.sidebar-cta {
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(248,247,244,0.08);
}
.sidebar-cta p {
  font-size: 0.85rem; color: rgba(248,247,244,0.5);
  margin-bottom: 1rem;
}

/* ── Track Record Grid (About) ───────────────────────────── */
.track-record-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.tr-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(248,247,244,0.08);
  text-align: center;
}
.tr-item:last-child { border-right: none; }
.tr-num {
  font-family: 'EB Garamond', serif;
  font-size: 2.8rem; font-weight: 500;
  color: #B8860B;
  line-height: 1; margin-bottom: 0.4rem;
}
.tr-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(248,247,244,0.45);
}

/* ── Bio Section ─────────────────────────────────────────── */
.bio-grid { display: grid; grid-template-columns: 340px 1fr; gap: 4rem; align-items: start; }
.bio-portrait-placeholder {
  background: #1B2A4A;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.bio-portrait-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,134,11,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,134,11,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.bio-portrait-inner {
  position: relative; z-index: 1; text-align: center; padding: 2rem;
}
.bio-portrait-inner .label { color: #B8860B; }
.bio-monogram {
  font-family: 'EB Garamond', serif;
  font-size: 5rem; font-weight: 400;
  color: rgba(248,247,244,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.bio-title {
  font-size: 0.85rem; color: rgba(248,247,244,0.5);
  line-height: 1.6;
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; }
.form-group    { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #1B2A4A; margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid rgba(27,42,74,0.18);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: #2C3E50;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #1B2A4A; }
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info-panel {
  background: #1B2A4A;
  padding: 3rem 2.5rem;
}
.contact-info-panel h3 {
  color: #F8F7F4; margin-bottom: 0.5rem;
}
.contact-info-panel .label { color: #B8860B; margin-bottom: 0.5rem; }
.info-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(248,247,244,0.08);
}
.info-item:last-child { border-bottom: none; }
.info-item .info-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #B8860B; margin-bottom: 0.25rem;
}
.info-item p { font-size: 0.9rem; color: rgba(248,247,244,0.7); }
.confidentiality-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(184,134,11,0.08);
  border-left: 2px solid #B8860B;
  font-size: 0.8rem;
  color: rgba(248,247,244,0.55);
  line-height: 1.65;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #111820;
  border-top: 1px solid rgba(184,134,11,0.12);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img   { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.82rem; color: rgba(248,247,244,0.35);
  line-height: 1.7;
}
.footer-col h5 {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #B8860B; margin-bottom: 1rem;
}
.footer-col ul li { padding: 0.3rem 0; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(248,247,244,0.4);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(248,247,244,0.8); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(248,247,244,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(248,247,244,0.25);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3, .services-grid { grid-template-columns: 1fr 1fr; }
  .grid-4, .approach-grid, .track-record-grid { grid-template-columns: 1fr 1fr; }
  .metrics-bar .container { grid-template-columns: repeat(3, 1fr); }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-portrait-placeholder { aspect-ratio: 3/2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE NAV  ≤ 768px
   Full-screen overlay, tap-to-expand Services sub-menu
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hide desktop nav, show hamburger */
  .site-nav { padding: 0 1.25rem; }
  .nav-links { display: none !important; }
  .hamburger { display: flex; }

  /* ── Open state: full-screen panel ── */
  /*
   * iOS Safari fix: 100vh includes the browser chrome (address bar + toolbar).
   * We use the --real-vh custom property set by JS (window.innerHeight * 0.01).
   * Fallback to 100vh for other browsers.
   * The panel is anchored top:72px (nav height) and uses calc(var(--real-vh,1vh)*100 - 72px)
   * for its height, guaranteeing it fills exactly the VISIBLE viewport below the nav bar.
   */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    height: calc(var(--real-vh, 1vh) * 100 - 72px);
    max-height: calc(var(--real-vh, 1vh) * 100 - 72px);
    background: #1B2A4A;
    padding: 0.5rem 0 env(safe-area-inset-bottom, 1.5rem);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    /* Smooth open animation */
    animation: mobileNavIn 0.22s ease forwards;
  }

  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Prevent body scroll when nav is open */
  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  /* ── All direct nav items ── */
  .nav-links.mobile-open > a,
  .nav-links.mobile-open > .dropdown {
    display: block;
    border-bottom: 1px solid rgba(248,247,244,0.08);
  }

  /* Text links: Home, About, Contact */
  .nav-links.mobile-open > a {
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #F8F7F4;
    padding: 1rem 1.5rem;
    text-transform: none;
    letter-spacing: 0;
  }
  .nav-links.mobile-open > a:hover,
  .nav-links.mobile-open > a.active { color: #B8860B; }

  /* ── Services row (tap to expand) ── */
  .nav-links.mobile-open .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #F8F7F4;
    padding: 1rem 1.5rem;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    user-select: none;
  }
  .nav-links.mobile-open .dropdown > a .arrow {
    font-size: 0.7rem;
    color: #B8860B;
    transition: transform 0.25s ease;
    display: inline-block;
    margin-left: 0.5rem;
  }
  .nav-links.mobile-open .dropdown.open > a .arrow {
    transform: rotate(90deg);
  }

  /* Sub-menu: hidden by default, revealed on .open.
     The !important beats any lingering :hover state on touch devices. */
  .nav-links.mobile-open .dropdown-menu {
    display: none !important;
    position: static;
    background: rgba(0,0,0,0.2);
    border: none;
    border-left: 3px solid #B8860B;
    margin: 0;
    padding: 0.25rem 0;
    min-width: unset;
  }
  .nav-links.mobile-open .dropdown.open .dropdown-menu {
    display: block !important;
  }
  .nav-links.mobile-open .dropdown-menu a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(248,247,244,0.7);
    padding: 0.75rem 1.5rem 0.75rem 2rem;
    border-left: none;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(248,247,244,0.05);
  }
  .nav-links.mobile-open .dropdown-menu a:last-child { border-bottom: none; }
  .nav-links.mobile-open .dropdown-menu a:active,
  .nav-links.mobile-open .dropdown-menu a.active { color: #B8860B; }

  /* ── CTA button — right after Contact ── */
  .nav-links.mobile-open > .btn.nav-cta {
    display: block !important;
    margin: 1.25rem 1.5rem 2rem;
    padding: 1rem 1rem;
    text-align: center;
    font-size: 0.82rem;
    width: calc(100% - 3rem);
    flex-shrink: 0;
  }

  /* ── Page layout adjustments ── */
  .hero h1 { font-size: 2.4rem; }
  .hero-logo-img { width: clamp(200px, 72vw, 320px); }
  .grid-2, .grid-3, .grid-4, .services-grid,
  .approach-grid, .track-record-grid { grid-template-columns: 1fr; }
  .metrics-bar .container { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .metric-item { border-right: none; border-bottom: 1px solid rgba(248,247,244,0.07); padding-bottom: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .industry-item { padding: 0.75rem 1.25rem; }
  .service-card { padding: 2rem 1.75rem; }
  .approach-item { border-right: none; border-bottom: 1px solid rgba(27,42,74,0.08); }
}
