/* ============================================================
   MN VALUATION & ADVISORY — Shared Site Stylesheet
   ============================================================ */

/* Goudy Old Style — self-hosted */
@font-face {
  font-family: 'Goudy Old Style';
  src: url('GoudyOldStyle.ttf') format('truetype');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Goudy Old Style';
  src: url('GoudyOldStyle.ttf') format('truetype');
  font-weight: bold; font-style: italic; font-display: swap;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Goudy Old Style', 'Palatino Linotype', Georgia, serif; }

:root {
  --navy: #1B2A4A; --navy-deep: #131f36; --navy-mid: #243558;
  --gold: #C9A84C; --gold-light: #e2c97e; --gold-pale: #f0e0b0;
  --grey: #808080; --grey-light: #a0a0a0;
  --ivory: #F5F0E8; --page-bg: #FAFAF8;
  --text-dark: #1a1a1a; --text-mid: #3a3a3a; --text-soft: #6b6b6b;
  --border: #e2ddd6;
  --display: 'Goudy Old Style', 'Palatino Linotype', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;
  --max-w: 1200px; --section-pad: 100px 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--page-bg); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.brand { font-family: 'Goudy Old Style', 'Palatino Linotype', Georgia, serif; font-weight: 700; letter-spacing: 0.06em; }
.gamp { font-family: 'Goudy Old Style', 'Palatino Linotype', Georgia, serif; font-style: normal; }

/* ===== NAV ===== */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(19,31,54,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 0 32px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; }
.nav-brand { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.nav-brand-name { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--ivory); letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }
.nav-brand-tag { font-size: 0.52rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-align: center; width: 100%; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.75); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-active { color: var(--gold) !important; }
.nav-cta { background: var(--gold); color: var(--navy-deep) !important; font-weight: 600; padding: 8px 20px; border-radius: 2px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ivory); }

/* Services dropdown */
.dropdown-trigger { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.dropdown-caret { width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); margin-top: -3px; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--navy-deep); border: 1px solid rgba(201,168,76,0.25); border-radius: 4px;
  padding: 10px; min-width: 260px; box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  list-style: none;
}
.nav-links > li.has-dropdown:hover .nav-dropdown,
.nav-links > li.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { position: static; }
.nav-dropdown a {
  display: block; padding: 10px 14px; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(245,240,232,0.75); border-radius: 2px; white-space: nowrap;
}
.nav-dropdown a:hover { background: rgba(201,168,76,0.1); color: var(--gold); }

/* ===== HERO (Home) ===== */
.hero { min-height: 100svh; background: var(--navy-deep); display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 24px 80px; }
.hero::before { content: ''; position: absolute; top: -10%; right: -5%; width: 55%; height: 120%; background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.04) 40%, rgba(201,168,76,0.09) 55%, rgba(201,168,76,0.04) 70%, transparent 100%); transform: skewX(-8deg); animation: swooshFade 2s ease forwards; opacity: 0; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.4; }
@keyframes swooshFade { from { opacity:0; transform:skewX(-8deg) translateX(40px); } to { opacity:1; transform:skewX(-8deg) translateX(0); } }
.hero-inner { max-width: var(--max-w); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; opacity: 0; animation: fadeUp 0.7s ease 0.3s forwards; }
.hero-eyebrow::before { content: ''; width: 38px; height: 1px; background: var(--gold); flex: 0 0 auto; }
.hero-heading { font-family: var(--display); font-size: clamp(1.85rem,3.3vw,2.9rem); font-weight: 700; line-height: 1.16; color: var(--ivory); margin-bottom: 26px; opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards; text-transform: uppercase; letter-spacing: 0.04em; }
.hero-heading em { font-style: italic; color: var(--gold-light); text-transform: none; letter-spacing: 0.02em; }
.hero-sub { font-size: 1.04rem; line-height: 1.85; color: rgba(245,240,232,0.68); max-width: 560px; margin-bottom: 34px; opacity: 0; animation: fadeUp 0.7s ease 0.7s forwards; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(201,168,76,0.25); padding-top: 30px; max-width: 560px; opacity: 0; animation: fadeUp 0.7s ease 0.9s forwards; }
.btn-primary { display: inline-block; background: var(--gold); color: var(--navy-deep); font-family: var(--body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 32px; border-radius: 2px; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { display: inline-block; border: 1px solid rgba(201,168,76,0.5); color: var(--ivory); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 32px; border-radius: 2px; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-logo-block { display: flex; justify-content: center; align-items: center; opacity: 0; animation: fadeIn 1.2s ease 0.6s forwards; }
.hero-logo-block img { width: 280px; height: auto; filter: drop-shadow(0 8px 40px rgba(201,168,76,0.3)); image-rendering: -webkit-optimize-contrast; }
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.gold-stripe { height: 4px; background: linear-gradient(90deg, var(--navy-deep), var(--gold), var(--navy-deep)); }

/* Hero video background */
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.45; transform: scale(1.04); }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(19,31,54,0.88) 0%, rgba(19,31,54,0.70) 50%, rgba(19,31,54,0.85) 100%); z-index: 1; }
.hero-video-overlay::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 120px rgba(201,168,76,0.08); pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap video { display: none; }
  .hero { background: linear-gradient(135deg, rgba(19,31,54,0.95), rgba(19,31,54,0.88)), url('hero-skyline-banner.jpg') center center / cover no-repeat; }
}

/* ===== PAGE HERO (About / Services hub / Contact / group pages) ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(19,31,54,0.92) 0%, rgba(19,31,54,0.80) 100%), url('hero-skyline-banner.jpg') center 30% / cover no-repeat;
  padding: 140px 40px 72px; position: relative; overflow: hidden; border-bottom: 4px solid var(--gold);
}
.page-hero::before { content: ''; position: absolute; top: -10%; right: -5%; width: 50%; height: 120%; background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.05) 50%, transparent 100%); transform: skewX(-8deg); }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero-eyebrow { font-size: 0.67rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; color: var(--ivory); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.1; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); text-transform: none; }
.page-hero p { font-size: 0.96rem; color: rgba(245,240,232,0.62); max-width: 580px; line-height: 1.75; }

/* ===== SHARED SECTION STYLES ===== */
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow { font-size: 0.67rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-heading { font-family: var(--display); font-size: clamp(1.9rem,3.2vw,2.8rem); font-weight: 700; line-height: 1.15; color: var(--navy); margin-bottom: 28px; text-transform: uppercase; letter-spacing: 0.05em; }
.section-heading em { font-style: italic; color: var(--gold); text-transform: none; }

/* ===== ABOUT ===== */
.about { padding: var(--section-pad); background: var(--page-bg); }
.about-img { width: 100%; height: 340px; border-radius: 2px; background: #ffffff url('banner-data.jpg') center center / contain no-repeat; margin-bottom: 28px; box-shadow: 0 8px 40px rgba(27,42,74,0.15); border-left: 4px solid var(--gold); position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 16px; }
.about-text p { font-size: 0.96rem; color: var(--text-mid); margin-bottom: 20px; line-height: 1.82; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.value-card { padding: 24px; background: white; border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: 2px; }
.value-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.value-card p { font-size: 0.82rem; color: var(--text-soft); line-height: 1.65; }

/* Mission / Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
.mv-card { padding: 36px; background: var(--navy); border-radius: 2px; border-top: 3px solid var(--gold); }
.mv-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--gold-light); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.mv-card p { font-size: 0.92rem; color: rgba(245,240,232,0.75); line-height: 1.75; }

/* Who We Serve */
.serve-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; list-style: none; }
.serve-list li { display: flex; align-items: center; gap: 14px; padding: 18px 22px; background: white; border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 2px; font-size: 0.9rem; color: var(--text-mid); font-weight: 500; }
.serve-list li::before { content: '—'; color: var(--gold); font-weight: 700; }

/* Trust strip (condensed, used on Home) */
.trust-strip { padding: 56px 24px; background: var(--page-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.trust-strip p { font-size: 0.88rem; color: var(--text-soft); max-width: 720px; margin: 0 auto 6px; line-height: 1.7; }
.trust-strip a { color: var(--navy); font-weight: 700; border-bottom: 1px solid var(--gold); }

/* ===== SERVICES HUB (cards) ===== */
.svc-hub-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 52px; background: var(--border); }
.svc-hub-card { background: white; padding: 44px 40px; transition: background 0.3s; position: relative; overflow: hidden; }
.svc-hub-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--gold); transform:scaleX(0); transform-origin:left; transition:transform 0.4s ease; }
.svc-hub-card:hover { background: #fdfcf9; }
.svc-hub-card:hover::before { transform: scaleX(1); }
.svc-hub-num { font-family: var(--display); font-size: 2.6rem; font-weight: 800; color: rgba(27,42,74,0.1); line-height: 1; margin-bottom: 16px; }
.svc-hub-card h3 { font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.svc-hub-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 18px; }
.svc-hub-includes { font-size: 0.72rem; color: var(--grey); letter-spacing: 0.03em; margin-bottom: 18px; }
.svc-hub-card .svc-hub-link { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.svc-hub-card:hover .svc-hub-link { color: var(--gold); }
@media (max-width: 800px) { .svc-hub-grid { grid-template-columns: 1fr; } }

/* ===== SERVICES TEASER (homepage strip, 4 group pills) ===== */
.services-teaser { padding: var(--section-pad); background: var(--navy-deep); }
.teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.teaser-text .section-heading { color: var(--ivory); }
.teaser-text .section-eyebrow { color: var(--gold); }
.teaser-desc { font-size: 0.95rem; color: rgba(245,240,232,0.62); line-height: 1.8; margin-bottom: 28px; }
.teaser-pills { display: flex; flex-direction: column; gap: 10px; }
.pill { display: block; padding: 16px 20px; border: 1px solid rgba(201,168,76,0.22); border-left: 3px solid var(--gold); color: rgba(245,240,232,0.72); font-family: var(--display); font-size: 1rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.2s, color 0.2s, border-color 0.2s; border-radius: 2px; }
.pill span.pill-sub { display: block; font-family: var(--body); font-size: 0.68rem; font-weight: 400; text-transform: none; letter-spacing: 0.02em; color: rgba(245,240,232,0.45); margin-top: 4px; }
.pill:hover { background: rgba(201,168,76,0.08); color: var(--gold); border-color: var(--gold); }
@media (max-width:900px) { .teaser-inner { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width:640px) { .teaser-pills { gap: 8px; } .pill { font-size: 0.88rem; padding: 14px 16px; } }

/* ===== FUNDING BAND ===== */
.funding-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); border-top: 1px solid rgba(201,168,76,0.35); border-bottom: 1px solid rgba(201,168,76,0.35); padding: 44px 24px; }
.funding-band-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.funding-band-eyebrow { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.funding-band h3 { font-size: 1.45rem; font-weight: 700; color: var(--ivory); letter-spacing: 0.03em; margin-bottom: 8px; }
.funding-band p { font-size: 0.92rem; color: rgba(245,240,232,0.68); line-height: 1.7; max-width: 640px; }
.funding-band .btn-primary { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 800px) { .funding-band-inner { flex-direction: column; align-items: flex-start; } }

/* ===== WHY ===== */
.why { padding: var(--section-pad); background: linear-gradient(to right, rgba(255,255,255,0.97) 55%, rgba(255,255,255,0.75) 100%), url('img-calculator.jpg') right center / cover no-repeat; }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; margin-top:16px; }
.why-badge-wrap { background:var(--navy); border:2px solid var(--gold); border-radius:4px; padding:52px 40px; text-align:center; position:relative; overflow:hidden; }
.why-badge-wrap::after { content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%; background:radial-gradient(circle at 60% 40%,rgba(201,168,76,0.08) 0%,transparent 60%); }
.why-badge-wrap img { width: 160px; height: auto; margin: 0 auto 24px; object-fit: contain; image-rendering: -webkit-optimize-contrast; }
.why-badge-name { font-family:var(--display); font-size:1.5rem; font-weight:700; color:var(--ivory); letter-spacing:0.1em; text-transform:uppercase; }
.why-badge-tag { font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-top:6px; }
.why-points { display:flex; flex-direction:column; gap:32px; }
.why-point { display:flex; gap:20px; align-items:flex-start; }
.why-icon { width:40px; height:40px; min-width:40px; background:var(--navy); border:1px solid rgba(201,168,76,0.3); border-radius:2px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--gold); }
.why-point h4 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:6px; text-transform:uppercase; letter-spacing:0.05em; }
.why-point p { font-size:0.85rem; color:var(--text-soft); line-height:1.7; }

/* ===== PROCESS ===== */
.process { padding: var(--section-pad); background: linear-gradient(rgba(250,250,248,0.96), rgba(250,250,248,0.96)), url('img-analysis.jpg') center center / cover no-repeat; }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:52px; position:relative; }
.process-steps::before { content:''; position:absolute; top:27px; left:calc(12.5% + 20px); right:calc(12.5% + 20px); height:1px; background:linear-gradient(90deg,var(--gold),rgba(201,168,76,0.3)); }
.process-step { padding:0 20px; text-align:center; }
.step-dot { width:56px; height:56px; border-radius:50%; background:var(--navy); border:2px solid var(--gold); display:flex; align-items:center; justify-content:center; margin:0 auto 24px; font-family:var(--display); font-size:1.3rem; font-weight:700; color:var(--gold); position:relative; z-index:1; }
.process-step h4 { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:10px; text-transform:uppercase; letter-spacing:0.05em; }
.process-step p { font-size:0.82rem; color:var(--text-soft); line-height:1.65; }

/* ===== CONTACT ===== */
.contact { padding: var(--section-pad); background: var(--navy-deep); }
.contact .section-heading { color: var(--ivory); }
.contact .section-eyebrow { color: var(--gold); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; margin-top:48px; }
.contact-info > p { font-size: 0.94rem; color: rgba(245,240,232,0.62); line-height: 1.8; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-item-icon { width: 34px; height: 34px; min-width: 34px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: 2px; display: flex; align-items: center; justify-content: center; }
.contact-item-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.contact-item-text { font-size: 0.92rem; color: rgba(245,240,232,0.85); line-height: 1.5; }
.contact-form { background: var(--ivory); padding: 40px; border-radius: 2px; border-top: 3px solid var(--gold); box-shadow: 0 10px 40px rgba(0,0,0,0.25); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid #d9d1c2; border-radius: 2px; font-family: var(--body); font-size: 0.9rem; color: var(--text-dark); background: #FBF8F2; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { background: var(--gold); color: var(--navy-deep); font-family: var(--body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 36px; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.form-submit:hover { background:var(--gold-light); transform:translateY(-1px); }

/* ===== PARTNERS ===== */
.partners { padding: 96px 24px; background: var(--page-bg); border-top: 1px solid var(--border); }
.partners-inner { max-width: var(--max-w); margin: 0 auto; }
.partners-header { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 40px; border-bottom: 1px solid var(--border); margin-bottom: 64px; gap: 40px; flex-wrap: wrap; }
.partners-header-text .section-eyebrow { margin-bottom: 10px; }
.partners-header-text .section-heading { margin-bottom: 0; font-size: clamp(1.7rem,2.8vw,2.4rem); }
.partners-header-desc { font-size: 0.9rem; color: var(--text-soft); line-height: 1.75; max-width: 380px; }
.partners-group { margin-bottom: 52px; }
.partners-group:last-child { margin-bottom: 0; }
.partners-group-label { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 28px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.partners-row { display: flex; align-items: stretch; flex-wrap: wrap; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.partner-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 36px 40px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background 0.25s, box-shadow 0.25s; flex: 1; min-width: 180px; cursor: default; }
.partner-item:hover { background: white; box-shadow: inset 0 -3px 0 var(--gold); }
.partner-logo-wrap { height: 80px; display: flex; align-items: center; justify-content: center; }
.partner-logo-wrap img, .partner-logo-wrap svg { max-height: 80px; max-width: 235px; width: auto; height: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: bicubic; }
.partner-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); text-align: center; }
.partner-role { font-size: 0.67rem; color: var(--grey); letter-spacing: 0.05em; text-align: center; margin-top: -6px; }

/* ===== FOOTER ===== */
footer { background:var(--navy-deep); border-top:1px solid rgba(201,168,76,0.2); padding:40px 24px; }
.footer-inner { max-width:var(--max-w); margin:0 auto; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; }
.footer-logo { display:flex; align-items:center; gap:12px; }
.footer-logo img { height: 40px; width: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; }
.footer-brand-name { font-size:0.9rem; font-weight:700; color:var(--ivory); letter-spacing:0.1em; text-transform:uppercase; }
.footer-copy { font-size:0.73rem; color:rgba(245,240,232,0.32); text-align:center; }
.footer-links { display:flex; gap:24px; list-style:none; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size:0.7rem; letter-spacing:0.1em; text-transform:uppercase; color:rgba(245,240,232,0.38); transition:color 0.2s; }
.footer-links a:hover { color:var(--gold); }

/* ===== SERVICE GROUP PAGES (sv2) ===== */
.sv2-section { padding: 88px 24px; }
.sv2-section.bg-a { background: var(--page-bg); }
.sv2-section.bg-b { background: #fff; }
.sv2-inner { max-width: var(--max-w); margin: 0 auto; }
.sv2-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:52px; padding-bottom:28px; border-bottom:1px solid var(--border); gap:32px; flex-wrap:wrap; }
.sv2-num { font-family:var(--display); font-size:5rem; font-weight:800; color:rgba(27,42,74,0.08); line-height:1; }
.sv2-title-block { flex:1; }
.sv2-title-block h2 { font-size:clamp(1.7rem,2.8vw,2.4rem); font-weight:700; color:var(--navy); text-transform:uppercase; letter-spacing:0.05em; margin-bottom:8px; }
.sv2-title-block p { font-size:0.95rem; color:var(--text-soft); line-height:1.75; max-width:600px; }
.sv2-content { display:grid; grid-template-columns:1fr 340px; gap:56px; align-items:start; }
.sv2-method-item { margin-bottom:32px; padding-bottom:32px; border-bottom:1px solid var(--border); }
.sv2-method-item:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.sv2-method-item h4 { font-size:1.05rem; font-weight:700; color:var(--navy); text-transform:uppercase; letter-spacing:0.04em; margin-bottom:8px; }
.sv2-method-item p { font-size:0.86rem; color:var(--text-mid); line-height:1.75; }
.sv2-sidebar { display:flex; flex-direction:column; gap:24px; }
.sv2-box { background:var(--navy); padding:28px; border-radius:2px; border-top:3px solid var(--gold); }
.sv2-box h5 { font-size:0.85rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--gold); margin-bottom:14px; }
.sv2-box p { font-size:0.82rem; color:rgba(245,240,232,0.65); line-height:1.7; }
.sv2-deliver-list { list-style:none; display:flex; flex-direction:column; gap:8px; margin:0; padding:0; }
.sv2-deliver-list li { font-size:0.8rem; color:rgba(245,240,232,0.65); padding-left:16px; position:relative; line-height:1.5; }
.sv2-deliver-list li::before { content:'✓'; position:absolute; left:0; color:var(--gold); font-size:0.7rem; }
@media(max-width:960px) { .sv2-content { grid-template-columns:1fr; } .sv2-sidebar { flex-direction:row; flex-wrap:wrap; } .sv2-box { flex:1; min-width:240px; } }
@media(max-width:640px) { .sv2-section { padding:64px 20px; } .sv2-header { flex-direction:column; gap:12px; } .sv2-num { font-size:3.5rem; } .sv2-sidebar { flex-direction:column; } }

/* Image banners between service sections */
.svc-img-banner { width: 100%; height: 220px; overflow: hidden; position: relative; }
.svc-img-banner-inner { width: 100%; height: 100%; background-size: cover; background-position: center; }
.svc-img-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(19,31,54,0.16) 0%, rgba(19,31,54,0.04) 50%, rgba(19,31,54,0.16) 100%); }
.svc-img-banner-label { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-family: var(--display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); background: rgba(250,250,248,0.94); padding: 10px 26px; border-left: 3px solid var(--gold); box-shadow: 0 4px 18px rgba(19,31,54,0.25); z-index: 1; white-space: nowrap; border-radius: 2px; }
@media (max-width: 640px) { .svc-img-banner-label { white-space: normal; text-align: center; width: max-content; max-width: calc(100% - 40px); } }

/* Closing CTA band */
.cta-band { background: var(--navy-deep); padding: 80px 24px; text-align: center; }
.cta-band-inner { max-width: 640px; margin: 0 auto; }
.cta-band .section-eyebrow { color: var(--gold); }
.cta-band h2 { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; color: var(--ivory); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; }
.cta-band h2 em { font-style: italic; color: var(--gold-light); text-transform: none; }
.cta-band > .cta-band-inner > p { font-size: 0.93rem; color: rgba(245,240,232,0.6); line-height: 1.78; margin-bottom: 36px; }

/* ===== REVEAL ===== */
.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ===== WHATSAPP CHAT BUTTON ===== */
.wa-chat { position: fixed; bottom: 26px; right: 26px; z-index: 998; display: flex; align-items: center; gap: 10px; background: #25D366; color: #ffffff; text-decoration: none; padding: 13px 20px 13px 15px; border-radius: 50px; font-family: var(--body); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; box-shadow: 0 6px 24px rgba(0,0,0,0.32); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.wa-chat:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.wa-chat svg { width: 22px; height: 22px; flex: 0 0 auto; fill: #ffffff; }
@media (max-width: 600px) { .wa-chat { padding: 15px; bottom: 18px; right: 18px; } .wa-chat-label { display: none; } }

/* ===== RESPONSIVE ===== */
@media (max-width:900px) {
  .hero-inner { grid-template-columns:1fr; }
  .about-grid { grid-template-columns:1fr; gap:40px; }
  .why-grid { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr 1fr; gap:32px; }
  .process-steps::before { display:none; }
  .contact-grid { grid-template-columns:1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .serve-list { grid-template-columns: 1fr; }
  .nav-links { display:none; }
  .nav-toggle { display:flex; }
  .partners-header { flex-direction:column; align-items:flex-start; }
  .partners-header-desc { max-width:100%; }
  .partner-item { min-width:140px; padding:24px 20px; }
  .page-hero { padding: 126px 28px 60px; }
  .sv2-content { gap: 36px; }
  .hero-logo-block { order: -1; }
  .hero-logo-block img { width: 190px; filter: drop-shadow(0 6px 28px rgba(201,168,76,0.28)); }
  .why-badge-wrap { max-width: 420px; margin: 0 auto 8px; padding: 40px 32px; }
  .why-badge-wrap img { width: 132px; }
  .why-badge-name { font-size: 1.25rem; }
  .about-img { height: 240px; }
}
@media (max-width:600px) {
  :root { --section-pad:72px 20px; }
  .about-values { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  nav#navbar { padding:0 20px; height: 64px; }
  .partner-item { min-width:calc(50% - 1px); }
  .nav-open .nav-links { top: 64px; }
  .nav-logo { gap: 10px; }
  .nav-logo img { height: 38px; }
  .nav-brand-name { font-size: 0.78rem; }
  .nav-brand-tag { font-size: 0.43rem; letter-spacing: 0.08em; }
  .hero { padding: 92px 20px 56px; }
  .hero-logo-block img { width: 156px; }
  .hero-heading { line-height: 1.16; }
  .hero-sub { font-size: 0.95rem; line-height: 1.78; margin-bottom: 36px; }
  .hero-actions { padding-top: 28px; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .about-img { height: 210px; }
  .value-card { padding: 20px; }
  .partner-item { padding: 22px 12px; }
  .partner-logo-wrap { height: 64px; }
  .partner-logo-wrap img, .partner-logo-wrap svg { max-height: 64px; max-width: 100%; }
  .partner-name { font-size: 0.72rem; }
  .partner-role { font-size: 0.62rem; }
  .contact-item-text { word-break: break-word; }
  .form-submit { width: 100%; }
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .page-hero { padding: 112px 20px 52px; }
  .page-hero p { font-size: 0.9rem; }
  .svc-img-banner { height: 170px; }
  .svc-img-banner-label { font-size: 0.6rem; letter-spacing: 0.16em; padding: 8px 16px; bottom: 16px; }
  .sv2-num { font-size: 3rem; }
  .sv2-title-block h2 { font-size: 1.5rem; }
  .sv2-box { padding: 22px; }
}
@media (max-width: 380px) {
  .nav-brand-tag { display: none; }
  .nav-brand-name { font-size: 0.72rem; }
}
.nav-open .nav-links {
  display:flex; flex-direction:column; align-items: flex-start;
  position:fixed; top:72px; left:0; right:0;
  background:var(--navy-deep); padding:24px 32px; gap:20px;
  border-bottom:1px solid rgba(201,168,76,0.2); max-height: calc(100vh - 72px); overflow-y: auto;
}
.nav-open .nav-links > li { width: 100%; }
@media (max-width:900px) {
  .nav-dropdown { position:static; opacity:1; visibility:visible; transform:none; background:transparent; border:none; box-shadow:none; padding:6px 0 6px 18px; min-width:0; }
  .dropdown-caret { display:none; }
}
@media (prefers-reduced-motion:reduce) { *,*::before,*::after { animation:none !important; transition:none !important; } }

/* ===== PER-PAGE HERO BACKGROUNDS ===== */
.page-hero.ph-about { background: linear-gradient(135deg, rgba(19,31,54,0.90) 0%, rgba(19,31,54,0.76) 100%), url('hero-about.jpg') center 35% / cover no-repeat; }
.page-hero.ph-services { background: linear-gradient(135deg, rgba(19,31,54,0.90) 0%, rgba(19,31,54,0.76) 100%), url('hero-services.jpg') center 30% / cover no-repeat; }
.page-hero.ph-modelling { background: linear-gradient(135deg, rgba(19,31,54,0.92) 0%, rgba(19,31,54,0.80) 100%), url('hero-modelling.jpg') center 40% / cover no-repeat; }
.page-hero.ph-accounting { background: linear-gradient(135deg, rgba(19,31,54,0.90) 0%, rgba(19,31,54,0.78) 100%), url('hero-accounting.jpg') center 55% / cover no-repeat; }
.page-hero.ph-assurance { background: linear-gradient(135deg, rgba(19,31,54,0.88) 0%, rgba(19,31,54,0.74) 100%), url('hero-assurance-check.jpg') center 30% / cover no-repeat; }

/* ===== MAP (contact page) ===== */
.map-section { background: var(--page-bg); padding: 0; border-top: 4px solid var(--gold); }
.map-wrap { position: relative; width: 100%; height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.9); }
.map-caption {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  background: rgba(19,31,54,0.95); color: var(--ivory);
  padding: 16px 22px; border-left: 3px solid var(--gold); border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3); max-width: 320px;
}
.map-caption h4 { font-size: 0.95rem; font-weight: 700; color: var(--gold-light); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.map-caption p { font-size: 0.82rem; color: rgba(245,240,232,0.8); line-height: 1.6; }
@media (max-width: 600px) {
  .map-wrap { height: 320px; }
  .map-caption { top: 14px; left: 14px; right: 14px; max-width: none; padding: 12px 16px; }
}

/* ===== ABOUT: extended sections ===== */
.standard-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); padding: 88px 24px; border-top: 1px solid rgba(201,168,76,0.3); border-bottom: 1px solid rgba(201,168,76,0.3); }
.standard-band .section-eyebrow { color: var(--gold); }
.standard-band .section-heading { color: var(--ivory); }
.standard-band p { font-size: 0.96rem; color: rgba(245,240,232,0.7); line-height: 1.85; max-width: 860px; margin-bottom: 20px; }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 16px; }
.tech-img { border-radius: 2px; overflow: hidden; border-left: 4px solid var(--gold); box-shadow: 0 12px 44px rgba(27,42,74,0.22); }
.tech-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tech-text p { font-size: 0.96rem; color: var(--text-mid); line-height: 1.82; margin-bottom: 20px; }
.values-grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 16px; }
@media (max-width: 900px) { .tech-grid { grid-template-columns: 1fr; gap: 32px; } .values-grid-6 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .values-grid-6 { grid-template-columns: 1fr; } }

/* ===== INSIGHTS ===== */
.page-hero.ph-insights { background: linear-gradient(135deg, rgba(19,31,54,0.92) 0%, rgba(19,31,54,0.78) 100%), url('banner-excellence.jpg') center 40% / cover no-repeat; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.insight-card { background: #fff; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.25s; }
.insight-card:hover { box-shadow: 0 14px 44px rgba(27,42,74,0.14); transform: translateY(-3px); }
.insight-card-img { height: 190px; background-size: cover; background-position: center; border-bottom: 3px solid var(--gold); }
.insight-card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.insight-card-cat { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.insight-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 12px; }
.insight-card p { font-size: 0.85rem; color: var(--text-soft); line-height: 1.7; flex: 1; }
.insight-card-meta { font-size: 0.72rem; color: var(--grey); margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); }
.insights-empty { background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: 2px; padding: 64px 40px; text-align: center; max-width: 720px; margin: 48px auto 0; }
.insights-empty h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.insights-empty p { font-size: 0.94rem; color: var(--text-soft); line-height: 1.8; max-width: 520px; margin: 0 auto 26px; }
@media (max-width: 960px) { .insights-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .insights-grid { grid-template-columns: 1fr; } }

/* ===== ARTICLE PAGE ===== */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 72px 24px 88px; }
.article-cat { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.article-title { font-family: var(--display); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
.article-meta { font-size: 0.8rem; color: var(--grey); padding-bottom: 26px; margin-bottom: 34px; border-bottom: 1px solid var(--border); }
.article-meta strong { color: var(--text-mid); }
.article-body p { font-size: 1.0rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 24px; }
.article-body h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 44px 0 16px; letter-spacing: 0.02em; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 34px 0 12px; }
.article-body ul, .article-body ol { margin: 0 0 24px 22px; }
.article-body li { font-size: 0.98rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 8px; }
.article-body blockquote { border-left: 3px solid var(--gold); background: #fff; padding: 22px 28px; margin: 30px 0; font-family: var(--display); font-size: 1.12rem; font-style: italic; color: var(--navy); line-height: 1.7; }
.article-lead { font-size: 1.12rem !important; color: var(--text-dark) !important; line-height: 1.85 !important; }
.author-box { display: flex; gap: 18px; align-items: center; background: var(--navy); border-radius: 2px; border-top: 3px solid var(--gold); padding: 26px 28px; margin-top: 52px; }
.author-box img { width: 64px; height: 60px; object-fit: contain; }
.author-box-name { font-family: var(--display); font-size: 1.02rem; font-weight: 700; color: var(--ivory); letter-spacing: 0.06em; text-transform: uppercase; }
.author-box-desc { font-size: 0.8rem; color: rgba(245,240,232,0.65); line-height: 1.6; margin-top: 4px; }
.article-hero-img { width: 100%; height: 340px; background-size: cover; background-position: center; border-radius: 2px; border-left: 4px solid var(--gold); box-shadow: 0 10px 40px rgba(27,42,74,0.18); margin-bottom: 40px; }
@media (max-width: 640px) { .article-hero-img { height: 210px; } .article-wrap { padding: 56px 20px 64px; } }

/* ===== SOCIAL ICONS (nav + footer) — LinkedIn brand blue for instant recognition ===== */
.nav-social { display: flex; align-items: center; }
.nav-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: #0A66C2; color: #ffffff; box-shadow: 0 0 0 1px rgba(201,168,76,0.4); transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.nav-social a:hover { background: #084d94; transform: translateY(-1px); box-shadow: 0 0 0 1px var(--gold), 0 4px 12px rgba(0,0,0,0.25); }
.nav-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-social { display: flex; gap: 10px; margin: 0 4px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #0A66C2; color: #ffffff; box-shadow: 0 0 0 1px rgba(201,168,76,0.35); transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.footer-social a:hover { background: #084d94; transform: translateY(-1px); box-shadow: 0 0 0 1px var(--gold), 0 4px 12px rgba(0,0,0,0.25); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
@media (max-width: 900px) { .nav-social { display: none; } }
