/* ============================================
   CVG SOLUTIONS — LIGHT & AIRY STYLESHEET
   White/cream base, navy text, gold accents
   Matching the approved reference design
   ============================================ */
/* Self-hosted fonts */
@import url('fonts/fonts.css');

:root {
    --navy: #000066;
    --navy-mid: #000080;
    --navy-light: #0000aa;
    --gold: #cc9933;
    --gold-light: #d4a843;
    --gold-bright: #c9a030;
    --gold-subtle: rgba(204,153,51,0.10);
    --white: #ffffff;
    --cream: #faf8f4;
    --off-white: #f5f2ec;
    --light-tan: #ede8df;
    --border: #e2ddd4;
    --text-dark: #000066;
    --text-mid: #3a3530;
    --text-light: #7a7268;
    --shadow-sm: 0 2px 12px rgba(0,0,102,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,102,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,102,0.14);
    --transition: all 0.3s ease;
    --font-main: 'Optima', 'Optima Nova', 'Century Gothic', 'CenturyGothic', 'AppleGothic', Candara, Calibri, 'Gill Sans', sans-serif;
    --max-width: 1200px;
    --section-pad: 90px 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.75;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-main);
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
}

/* ============================================
   NAVIGATION — white bar, logo visible
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,102,0.08);
}

.nav-logo img {
    height: 66px;
    width: auto;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 9px 22px !important;
    border-radius: 2px;
    letter-spacing: 0.08em !important;
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--white) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   HOME HERO — light, airy, blueprint watermark
   ============================================ */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 120px;
    font-weight: normal;
}

/* Wireframe architectural background — large format, centered */
.home-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/blueprint-industrialwireframe.png');
    background-size: 105%;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.55;
    z-index: 0;
}

/* Wind rose watermark */
.home-hero-windrose {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5400px;
    opacity: 0.315;
    pointer-events: none;
    z-index: 1;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 80px 0;
}


.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.home-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    color: var(--text-dark);
    line-height: 1.08;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: left;
}

.home-hero h1 .gold {
    color: var(--gold);
    display: block;
}

.home-hero h1 .for-light {
    color: var(--text-light);
}

.hero-tagline {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 24px 0 40px;
    line-height: 1.85;
    max-width: 680px;
}

.hero-tagline-lead,
.hero-tagline-list {
    font-size: clamp(1.05rem, 2.1vw, 1.5rem);
    margin-bottom: 18px;
}

.hero-tagline-list {
    margin-top: 0;
    margin-bottom: 24px;
}

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

/* Index hero CTAs: navy background, gold text, white on hover */
.home-hero .btn-primary,
.home-hero .btn-outline {
    background: var(--navy);
    color: var(--gold);
    border: 1.5px solid var(--navy);
}

.home-hero .btn-primary:hover,
.home-hero .btn-outline:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    color: var(--white);
}

/* Stats row at bottom of hero */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 28px 0;
    z-index: 2;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ============================================
   PAGE HERO — light version
   ============================================ */
.page-hero {
    padding: 140px 0 70px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(50% + 400px);
    transform: translate(-50%, -50%);
    width: 1280px;
    height: 1280px;
    background-image: url('images/wind-rose-flat.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

#news-hero::after {
    display: none;
}

#news-hero .home-hero-windrose {
    z-index: 1;
    opacity: 0.26;
    transform: translate(calc(-50% - 200px), calc(-50% + 100px));
}

#news-hero .news-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-dark);
    line-height: 1.08;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: left;
}

#news-hero .news-hero-title .gold {
    color: #cc9933;
}

#news-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-dark);
    margin-bottom: 18px;
    max-width: 680px;
}

.page-hero p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.85;
}

.page-hero-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204,153,51,0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-ghost:hover {
    background: var(--gold);
    color: var(--white);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: var(--section-pad);
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title .gold {
    color: var(--gold);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.85;
}

.section-header {
    margin-bottom: 56px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

.divider {
    width: 44px;
    height: 2px;
    background: var(--gold);
    margin: 18px 0;
}

.divider.centered {
    margin: 18px auto;
}

/* Light cream section */
.section-light {
    background: var(--cream);
}

.section-off {
    background: var(--off-white);
}

/* Navy accent section — used sparingly, only for CTA */
.section-navy {
    background: var(--navy);
}

.section-navy .section-title {
    color: var(--white);
}

.section-navy .section-subtitle {
    color: rgba(255,255,255,0.65);
}

.section-navy .section-label {
    color: var(--gold-light);
}

/* ============================================
   CVG BRAND BLOCK — light version
   ============================================ */
.brand-block {
    background: var(--cream);
    padding: 70px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.brand-item {
    background: var(--white);
    padding: 44px 36px;
    text-align: center;
    transition: var(--transition);
}

.brand-item:hover {
    background: var(--cream);
}

.brand-letter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.brand-word {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.brand-desc {
    font-size: 0.87rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card-img {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.85;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 26px;
}

.service-card-body h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-card-link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card-link:hover {
    gap: 10px;
}

/* ============================================
   STATS BAR — gold background
   ============================================ */
.stats-bar {
    background: var(--navy);
    padding: 44px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

/* ============================================
   PILLARS
   ============================================ */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pillar-card {
    padding: 36px 28px;
    border-left: 3px solid var(--gold);
    background: var(--white);
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pillar-card:hover {
    background: var(--cream);
    transform: translateX(3px);
}

.pillar-number {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pillar-card h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(204,153,51,0.15));
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--gold);
    color: var(--white);
}

.process-step h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card-photo {
    height: 260px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.team-card-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
}

.team-initials {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.6;
}

.team-card-body {
    padding: 24px;
}

.team-card-body h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.team-card-role {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.team-card-body p {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--cream);
    color: var(--text-mid);
    border-radius: 2px;
    border: 1px solid var(--border);
}

/* ============================================
   PARTNER PROFILES — TEAM PAGE
   ============================================ */
.partner-profile {
    padding: 70px 0;
    border-bottom: 1px solid var(--border);
}

.partner-profile:last-child {
    border-bottom: none;
}

.partner-profile-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: start;
}

.partner-profile.reverse .partner-profile-inner {
    grid-template-columns: 1fr 300px;
}

.partner-profile.reverse .partner-photo-col {
    order: 2;
}

.partner-profile.reverse .partner-bio-col {
    order: 1;
}

.partner-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.partner-photo-initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.35;
}

.partner-bio-col h2 {
    font-size: 1.9rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.partner-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.partner-bio-col p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 14px;
}

.partner-expertise {
    margin-top: 28px;
}

.partner-expertise h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    font-size: 0.78rem;
    padding: 6px 14px;
    background: var(--gold-subtle);
    color: var(--gold);
    border: 1px solid rgba(204,153,51,0.25);
    border-radius: 2px;
    font-weight: 500;
}

/* ============================================
   SOLUTIONS PAGE
   ============================================ */
.solution-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.solution-section:last-child {
    border-bottom: none;
}

.solution-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.solution-inner.reverse {
    direction: rtl;
}

.solution-inner.reverse > * {
    direction: ltr;
}

.solution-img {
    border-radius: 4px;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border);
}

.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.solution-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    color: var(--text-dark);
    margin-bottom: 18px;
}

.solution-content p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 12px;
    text-align: justify;
    text-justify: inter-word;
}

.solution-content p.commercial-intro {
    text-align: justify;
    text-justify: inter-word;
}

#commercial-re .solution-content p,
#commercial-re .solution-feature {
    color: var(--text-light);
}

#exit-strategy .solution-content p,
#exit-strategy .solution-feature {
    color: var(--text-light);
}

#exit-strategy .section-label {
    color: var(--gold);
}

#exit-strategy .solution-content h2 {
    color: var(--navy);
}

.solution-features {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-mid);
}

.solution-feature::before {
    content: '—';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.solution-subnav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 72px;
    z-index: 100;
}

.solution-subnav-inner {
    display: flex;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
}

.solution-subnav a {
    padding: 16px 24px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.solution-subnav a:hover,
.solution-subnav a.active {
    color: var(--text-dark);
    border-bottom-color: var(--gold);
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-light);
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition);
    font-family: var(--font-main);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.portfolio-card-img {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.portfolio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-card-img img {
    transform: scale(1.05);
}

.portfolio-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--white);
    border-radius: 2px;
}

.portfolio-card-body {
    padding: 22px;
}

.portfolio-card-body h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 7px;
}

.portfolio-card-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 14px;
}

.portfolio-meta {
    display: flex;
    gap: 14px;
    font-size: 0.76rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-category {
    margin-bottom: 52px;
}

.partners-category h3 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.partner-logo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
}

.partner-logo-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.partner-logo-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.partner-logo-card h4 {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.partner-logo-card p {
    font-size: 0.76rem;
    color: var(--text-light);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.contact-info p {
    font-size: 0.91rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    border: 1px solid rgba(204,153,51,0.2);
}

.contact-detail-text strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.contact-detail-text span {
    font-size: 0.88rem;
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 44px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 2px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(204,153,51,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   CTA SECTION — navy, used sparingly
   ============================================ */
.cta-section {
    background: var(--navy);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background-image: url('images/wind-rose.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    color: var(--white);
    margin-bottom: 14px;
}

.cta-inner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.62);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.85;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 4px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(204,153,51,0.3);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 14px;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* ============================================
   FOOTER — navy
   ============================================ */
.footer {
    background: var(--navy);
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 44px;
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    opacity: 0.92;
}

.footer-brand p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col ul li a {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.4);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}


.footer-logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-logo-center img {
    height: 60px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
}

.footer-bottom-links a:hover {
    color: var(--gold-light);
}

/* ============================================
   ANIMATIONS — disabled
   ============================================ */
.fade-up {
    opacity: 1;
    transform: none;
    transition: none;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

.fade-up-delay-1 {
    transition-delay: 0s;
}

.fade-up-delay-2 {
    transition-delay: 0s;
}

.fade-up-delay-3 {
    transition-delay: 0s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid,
    .team-grid,
    .pillars-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .process-steps::before {
        display: none;
    }

    .partner-profile-inner,
    .partner-profile.reverse .partner-profile-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .partner-profile.reverse .partner-photo-col,
    .partner-profile.reverse .partner-bio-col {
        order: unset;
    }

    .partner-photo {
        aspect-ratio: 3/4;
        max-height: 340px;
        max-width: 320px;
        margin: 0 auto;
    }

    .solution-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .solution-inner.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px 20px;
        gap: 18px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }

    .services-grid,
    .team-grid,
    .pillars-grid,
    .testimonials-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-hero .btn {
        width: 100%;
        justify-content: center;
    }

    .home-hero-content {
        max-width: 100%;
        padding: 42px 0 12px;
    }

    .home-hero h1 {
        font-size: clamp(2rem, 11vw, 2.7rem);
        line-height: 1.12;
    }

    .hero-tagline {
        max-width: 100%;
        line-height: 1.55;
        margin: 14px 0 18px;
    }

    .hero-tagline-lead,
    .hero-tagline-list {
        font-size: clamp(1rem, 5.2vw, 1.25rem);
    }

    .home-hero .hero-eyebrow {
        font-size: 1.2rem;
        line-height: 1.4;
        letter-spacing: 0.16em;
        max-width: 220px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 18px;
    }

    .home-hero .hero-eyebrow .eyebrow-dot {
        display: none;
    }

    .home-hero .hero-eyebrow::before,
    .home-hero .hero-eyebrow::after {
        width: 20px;
    }

    .home-hero-windrose {
        width: 108%;
        opacity: 0.11;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .solution-subnav-inner {
        overflow-x: auto;
        padding: 0 20px;
    }

    .home-hero {
        min-height: auto;
        padding-bottom: 0;
        display: block;
    }

    .hero-stats {
        position: static;
        margin-top: 10px;
        padding: 18px 0 16px;
    }
}
