:root {
    --navy: #0a2342;
    --navy-deep: #071829;
    --navy-mid: #0d2d55;
    --gold: #b89a50;
    --gold-light: #d9bb82;
    --gold-pale: #f0e6cc;
    --white: #ffffff;
    --off-white: #fafaf8;
    --cream: #f5f1e8;
    --text-dark: #1a1a2e;
    --text-mid: #2e3a4a;
    --text-light: #4e5f72;
    --border: rgba(198, 162, 90, 0.2);
    --border-light: rgba(10, 35, 66, 0.08);

    --font-family-heading: "Playfair Display", serif;
    --font-size-heading: 3em;
    --font-family-subheading: "Cormorant Garamond", serif;
    --font-size-subheading: 1.375em;
    --font-family-body: "Open Sans", sans-serif;
    --font-size-body: 1em;

    --fs-2xs: 0.625em;
    --fs-xs: 0.6875em;
    --fs-sm: 0.75em;
    --fs-md-sm: 0.8125em;
    --fs-md: 0.875em;
    --fs-body: 1em;
    --fs-base: 1em;
    --fs-lg: 1em;
    --fs-xl: 1.25em;
    --fs-2xl: 1.375em;
    --fs-3xl: 1.5em;
    --fs-4xl: 1.625em;
    --fs-5xl: 1.75em;
    --fs-6xl: 2em;
    --fs-7xl: 2.625em;
    --fs-8xl: 3em;
    --fs-9xl: 4em;
    --fs-10xl: 4.6875em;
    --fs-11xl: 5em;
    --fs-display: 10em;
    --fs-stat: 2.625em;
    --gold-gradient-text: linear-gradient(170deg, #f5e6b8 0%, #d4a843 20%, #b8861e 38%, #e8c96a 50%, #c49a2e 62%, #f0d878 78%, #a8781a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 400;
}

.hamburger {
    display: none;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 0 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.scrolled {
    height: 68px;
    box-shadow: 0 4px 30px rgba(10, 35, 66, 0.08);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.nav-logo-main {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.08em;
    line-height: 1;
}

.nav-logo-sub {
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 100%;
    height: 1px;
    background: var(--gold);
    transition: right 0.3s ease;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a:hover::after {
    right: 0;
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 22px;
    font-size: var(--fs-xs) !important;
    letter-spacing: 0.2em !important;
    transition: background 0.2s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            var(--navy-deep) 0%,
            var(--navy) 50%,
            #0e3060 100%);
}

/* Subtle geometric texture */
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 60px,
            rgba(198, 162, 90, 0.025) 60px,
            rgba(198, 162, 90, 0.025) 61px);
}

select.form-select{
    width:100%;
}
/* Gold accent line */
.hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 55%;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(198, 162, 90, 0.3) 30%,
            rgba(198, 162, 90, 0.3) 70%,
            transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow-text {
    font-size: var(--fs-2xs);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-heading);
    font-weight: 400;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-title-accent {
    font-style: italic;
    color: var(--gold-light);
}

.hero-taglines {
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.65s;
}

.hero-tagline {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.7;
}

.hero-tagline::before {
    content: "—";
    color: var(--gold);
    margin-right: 10px;
    font-style: normal;
}

.hero-desc {
    font-size: 1em;
    font-weight: 300;
    color: var(--white);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-desc-para {
    font-size: 1em;
    font-weight: 300;
    color: var(--white);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 5px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.95s;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--gold);
    color: var(--navy);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary:hover {
    color: var(--navy);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-right {
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.1s;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(198, 162, 90, 0.2);
    border: 1px solid rgba(198, 162, 90, 0.2);
}

.hero-stat {
    background: rgba(10, 35, 66, 0.6);
    padding: 36px 32px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-brand {
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-brand__name {
    font-family: var(--font-family-heading);
    font-size: calc(var(--font-size-heading) * 1.75);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
}

.hero-brand__suffix-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.hero-brand__line {
    display: block;
    width: 44px;
    height: 1px;
}

.hero-brand__line--left {
    background: linear-gradient(90deg, transparent, #c49a2e);
}

.hero-brand__line--right {
    background: linear-gradient(90deg, #c49a2e, transparent);
}

.hero-brand__suffix {
    font-family: var(--font-family-heading);
    font-size: calc(var(--font-size-subheading) * 0.75);
    font-weight: 400;
    letter-spacing: 0.28em;
    line-height: 1;
}

.text-gold-gradient {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-motto {
    font-family: var(--font-family-body);
    font-size: 1em;
    font-weight: 500;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 480px;
    letter-spacing: 0.03em;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.75s;
}

.hero-stat-text {
    font-family: var(--font-family-body);
    font-size: 1em;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.hero-stat-num {
    font-family: var(--font-family-heading);
    font-size: var(--fs-7xl);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-family: var(--font-family-body);
    font-size: var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.5;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.hero-scroll-text {
    font-size: var(--fs-sm);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* ─── SECTION COMMON ─── */
section {
    padding: 120px 60px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-eyebrow-text {
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-heading);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-subtitle {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 860px;
}

.section-subtitle--spaced {
    margin-bottom: 56px;
}

.section-intro {
    font-family: var(--font-family-body);
    font-size: 1em;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 860px;
}

.section-intro--spaced {
    margin-bottom: 56px;
}

.section--soft {
    background: var(--off-white);
    padding: 100px 60px;
}

.industries-subheader {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    font-style: italic;
}

/* ─── INDUSTRIES ─── */
.industries {
    background: var(--off-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: var(--border-light);
}

.industry-card {
    background: var(--white);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: default;
}

.industry-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover {
    box-shadow: 0 24px 70px rgba(10, 35, 66, 0.13);
    transform: translateY(-6px);
    background: #fafcff;
}

.industry-card:hover .industry-title {
    color: var(--gold);
}

.industry-card:hover .learn-more-btn {
    color: var(--gold);
    border-bottom-color: var(--gold);
    gap: 16px;
}

.industry-number {
    font-family: var(--font-family-heading);
    font-size: var(--fs-9xl);
    font-weight: 400;
    color: rgba(10, 35, 66, 0.04);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 28px;
}

.industry-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.industry-title {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.industry-desc {
    font-size: 1em;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ─── WHAT WE DO ─── */
.what-we-do {
    background: var(--white);
    padding: 120px 60px;
}

.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.what-left {
    max-width: 560px;
}

.what-body {
    font-family: var(--font-family-body);
    font-size: 1em;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.75;
    margin-top: 32px;
}

.what-body p+p {
    margin-top: 20px;
}

.what-right {
    padding: 60px 56px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.what-right::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(198, 162, 90, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.what-right::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(198, 162, 90, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.philosophy-title {
    font-family: var(--font-family-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.philosophy-text {
    position: relative;
    z-index: 1;
}

.philosophy-text p {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 300;
    color: var(--white);
    line-height: 1.8;
}

.philosophy-text p+p {
    margin-top: 20px;
}

.philosophy-text strong {
    color: var(--gold-light);
    font-weight: 400;
    font-style: italic;
}

.philosophy-quote {
    margin-top: 28px;
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 400;
    color: var(--gold) !important;
    line-height: 1.5;
    font-style: italic;
}

.philosophy-signature {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(198, 162, 90, 0.2);
    font-family: var(--font-family-body);
    font-size: var(--fs-xs);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    z-index: 1;
}

/* ─── WHY MEG ─── */
.why-meg {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.why-meg::before {
    content: "MEG";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    font-family: var(--font-family-heading);
    font-size: var(--fs-display);
    font-weight: 700;
    color: rgba(10, 35, 66, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.why-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(10, 35, 66, 0.06);
}

.why-card {
    background: var(--white);
    padding: 48px 44px;
    position: relative;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: var(--navy);
}

.why-card:hover .why-card-title {
    color: var(--white);
}

.why-card:hover .why-card-desc {
    color: rgba(255, 255, 255, 0.6);
}

.why-card:hover .why-card-num {
    color: rgba(255, 255, 255, 0.06);
}

.why-card-num {
    font-family: var(--font-family-heading);
    font-size: var(--fs-11xl);
    font-weight: 400;
    color: rgba(10, 35, 66, 0.04);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
    transition: color 0.3s;
}

.why-card-marker {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}

.why-card-title {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.3;
    transition: color 0.3s;
}

.why-card-desc {
    font-size: 1em;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
    transition: color 0.3s;
}

/* ─── ENGAGEMENTS ─── */
.engagements {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.engagements::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(198, 162, 90, 0.03));
    pointer-events: none;
}

.engagements .section-title {
    color: var(--white);
}

.engagements .section-subtitle {
    color: var(--white);
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 60px;
    background: rgba(198, 162, 90, 0.15);
}

.engagement-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 44px 36px;
    transition: background 0.3s;
    position: relative;
}

.engagement-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.engagement-category {
    font-size: var(--fs-2xs);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.engagement-title {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 18px;
}

.engagement-desc {
    font-size: 1em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.engagement-rule {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 24px;
    opacity: 0.6;
}

/* ─── FOUNDER ─── */
.founder {
    background: var(--white);
}

.founder-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: center;
}

.founder-portrait {
    position: relative;
    width: 252px;
    flex-shrink: 0;
}

.founder-portrait-frame {
    width: 252px;
    height: 306px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.founder-portrait__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.founder-portrait-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(160deg, #e8e2d6 0%, #d4cfc5 100%);
}

.founder-initials {
    font-family: var(--font-family-heading);
    font-size: var(--fs-11xl);
    font-weight: 400;
    color: var(--navy);
    opacity: 0.15;
}

.founder-portrait-label {
    font-size: var(--fs-2xs);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.35;
    margin-top: 8px;
}

.founder-portrait-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    opacity: 0.4;
}

.founder-eyebrow {
    font-size: var(--fs-2xs);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.founder-name {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-heading);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 8px;
}

.founder-title-text {
    font-size: var(--fs-md-sm);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 36px;
}

.founder-bio {
    font-size: 1em;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.75;
    max-width: 860px;
}

.founder-bio p+p {
    margin-top: 20px;
}

.founder-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 36px 0;
}

/* ─── CAPABILITIES PAGE ─── */
.capabilities {
    background: var(--off-white);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: var(--border-light);
}

.capability-card {
    background: var(--white);
    padding: 52px 48px;
    position: relative;
}

.capability-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.capability-icon-wrap {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.capability-title {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.3;
    padding-top: 8px;
}

.capability-desc {
    font-size: 1em;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 24px;
}

.capability-list {
    list-style: none;
}

.capability-list li {
    font-size: var(--fs-md-sm);
    font-weight: 400;
    color: var(--text-mid);
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.capability-list li::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--gold);
    flex-shrink: 0;
}

.capability-highlight {
    background: var(--navy);
    grid-column: span 2;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.capability-highlight-text {
    flex: 1;
}

.capability-highlight-title {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-heading);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.capability-highlight-desc {
    font-size: 1em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ─── CONTACT ─── */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 100px;
    margin-top: 60px;
}

.contact-info-item {
    margin-bottom: 36px;
}

.contact-info-label {
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.contact-info-value {
    font-size: 1em;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.6;
}

.contact-tagline {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.contact-form-intro {
    font-family: var(--font-family-body);
    font-size: 1em;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: -24px;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group.full {
    grid-column: span 2;
}

.form-label {
    font-size: var(--fs-2xs);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-mid);
}

.form-input,
.form-select,
.form-textarea {
    padding: 14px 18px;
    border: 1px solid rgba(10, 35, 66, 0.12);
    background: var(--white);
    font-family: var(--font-family-body);
    font-size: var(--fs-md);
    font-weight: 300;
    color: var(--text-dark);
    transition: all 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 162, 90, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
}

.form-select-wrap {
    position: relative;
}

.form-select-wrap::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-family-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ─── FOOTER ─── */
footer {
    background: var(--navy-deep);
    padding: 60px;
}

.footer-inner {
    width: 100%;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo-text {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-heading);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.08em;
}

.footer-tagline {
    font-size: var(--fs-xs);
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 6px;
}

.footer-nav {
    display: flex;
    gap: 36px;
    list-style: none;
}

.footer-nav a {
    font-size: var(--fs-xs);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: var(--fs-xs);
    color: var(--white);
    letter-spacing: 0.1em;
}

.footer-social {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 14px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(184, 154, 80, 0.08);
}

.footer-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* ─── PAGE SECTIONS ─── */
.page-header {
    padding: 160px 60px 100px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 60px;
    height: 1px;
    background: rgba(198, 162, 90, 0.2);
}

.page-header-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page-header-title {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-heading);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
}

.page-header-title em {
    font-style: italic;
    color: var(--gold-light);
}

.page-header-sub {
    font-size: 1em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    letter-spacing: 0.05em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── PAGE NAVIGATION ─── */
.site-pages {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-dot {
    width: 8px;
    height: 8px;
    background: rgba(10, 35, 66, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.page-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.page-dot:hover {
    background: var(--navy);
}

/* DIVIDER */
.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}

/* ─── LEARN MORE BUTTON ─── */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 10px 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--gold);
    color: var(--navy);
    font-family: var(--font-family-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.learn-more-btn::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--gold);
    gap: 16px;
    letter-spacing: 0.25em;
}

.learn-more-btn:hover::after {
    transform: scaleX(1);
}

.learn-more-btn svg {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover svg {
    transform: translateX(5px);
}

/* ─── MODAL OVERLAY ─── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(7, 24, 41, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--white);
    z-index: 501;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
}

.modal-panel.active {
    display: block;
}

.modal-panel.open {
    transform: translateX(0);
}

.modal-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

.modal-header-1 {
    background-image: url("../images/skin-img-1.jpg");
}

.modal-header-2 {
    background-image: url("../images/industry-img-1.jpg");
}

.modal-header-3 {
    background-image: url("../images/health-img-1.jpg");
}

.modal-logo {
    align-items: center;
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
}

.modal-logo .nav-logo-main {
    color: white !important;
}

.modal-eyebrow {
    font-size: var(--fs-4xl);
    font-weight: 400;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 10px;
    /* text-align: center; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.modal-title {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-heading);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.modal-titles {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-heading);
    font-weight: 600;
    color: var(--gold);
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.modal-close {
    background: none;
    border: 3px solid white;
    color: white;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: absolute;
    top: 100px;
    right: 40px;
}

/* .modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
} */

.modal-body {
    padding: 56px 60px;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 160px);
}

.modal-intro {
    font-size: 1em;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
}

.modal-section-title {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 28px;
}

/* Process steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 48px;
}

.process-step {
    display: flex;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.process-step:first-child {
    border-top: 1px solid var(--border-light);
}

.step-num {
    font-family: var(--font-family-heading);
    font-size: var(--fs-6xl);
    font-weight: 400;
    color: rgba(10, 35, 66, 0.1);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    padding-top: 2px;
}

.step-title {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 1em;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

/* Bullet list */
.modal-list {
    list-style: none;
    margin-bottom: 40px;
}

.modal-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: var(--fs-md);
    font-weight: 400;
    color: var(--text-mid);
}

.modal-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--gold);
    flex-shrink: 0;
}

/* Focus areas */
.focus-areas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.focus-area {
    padding: 24px 28px;
    background: var(--off-white);
    border-left: 3px solid var(--gold);
}

.focus-area-title {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.focus-area-desc {
    font-size: 1em;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

.modal-closing {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    padding: 32px 0 40px;
    border-top: 1px solid var(--border-light);
    margin-top: 8px;
}

/* Modal form */
.modal-form-title {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 28px;
    padding-top: 8px;
}

.modal-form .form-group {
    margin-bottom: 18px;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.modal-form .form-submit {
    margin-top: 4px;
}

.site-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
    display: block;
}

.site-logo-footer {
    height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 8px;
}

.health-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-inner,
.health-img {
    width: 50%;
}

.health-img img {
    width: 100%;
    border-radius: 20px;
}

.sec-inner-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.sec-img img {
    width: 100%;
    max-width: 1000px;
    border-radius: 20px;
}

.svg-area {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.custom-para {
    color: var(--gold);
    font-style: italic;
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border-light);
}

.situation-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.situation-card:hover {
    background: var(--navy);
}

.situation-card:hover .situation-card__title {
    color: var(--white);
}

.situation-card:hover .situation-card__desc {
    color: rgba(255, 255, 255, 0.65);
}

.situation-card__marker {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}

.situation-card__number {
    font-family: var(--font-family-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.situation-card__title {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.situation-card__desc {
    font-family: var(--font-family-body);
    font-size: 1em;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.65;
    transition: color 0.3s;
}

.strategic-desc {
    font-family: var(--font-family-body);
    font-size: 1em;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 740px;
    margin-top: 20px;
    margin-bottom: 36px;
}

.strategic-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: 1px solid var(--gold);
    color: var(--navy);
    font-family: var(--font-family-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.strategic-cta:hover {
    background: var(--gold);
    color: var(--navy);
}

.practice-page {
    background: var(--white);
    padding: 140px 60px 100px;
}

.content-narrow {
    max-width: 860px;
    margin: 0 auto;
}

.feature-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-card__title {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
}

.feature-card__desc {
    font-family: var(--font-family-body);
    font-size: 1em;
    color: var(--text-mid);
    line-height: 1.8;
}

.content-block {
    margin-top: 60px;
}

.about-paragraph {
    font-family: var(--font-family-body);
    font-size: 1em;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 24px;
}

.section-cta {
    margin-top: 60px;
    text-align: center;
}

.page-divider {
    height: 1px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-divider--gold {
    background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    opacity: 0.35;
}

.page-divider--navy {
    background: linear-gradient(to right, transparent, rgba(10, 35, 66, 0.15) 20%, rgba(10, 35, 66, 0.15) 80%, transparent);
}

.page-divider--gold-soft {
    background: linear-gradient(to right, transparent, rgba(198, 162, 90, 0.3) 20%, rgba(198, 162, 90, 0.3) 80%, transparent);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1600px) {
    .nav-links {
        gap: 15px;
    }
    
    .footer-nav {
        gap: 20px;
    }
}

@media (max-width: 1500px) {
    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 1400px) {
    .footer-nav {
        gap: 15px;
    }
    
    .nav-links a{
        letter-spacing:0;
    }

    .nav-links {
        gap: 17px;
    }
}

@media (max-width: 1366px) {
    .footer-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-inner,
    .health-img {
        width: 100%;
    }

    .form-select {
        width: 100%;
    }

    .content-narrow {
        max-width: 100%;
    }

    .sec-inner-wrapper {
        flex-wrap: wrap;
    }

    .sec-img img {
        max-width: 100%;
    }

    .about-sec,
    .contact {
        padding-top: 120px !important;
    }

    .practice-page {
        flex-direction: column-reverse;
        row-gap: 30px;
        padding-top: 120px !important;
    }

    .nav-links {
        gap: 15px;
    }

    .footer-nav {
        gap: 15px;
    }

    .nav-links a {
        letter-spacing: 0;
    }

    .nav-links .nav-cta {
        display: block;
    }

    .situation-card,
    .industry-card {
        padding: 35px 25px;
    }

    section {
        padding: 60px !important;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: end;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .footer-inner {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding-top: 120px !important;
    }
}

@media (max-width: 991px) {
    .nav-links.sideBar {
        position: fixed;
        left: -320px;
        top: 0;
        width: 300px;
        height: 100vh;
        background: #000;
        padding: 80px 10px 0;
        display: flex;
        flex-direction: column;
        transition: left .4s ease;
        z-index: 9999;
        justify-content: start;
    }

    .nav-links.sideBar.active {
        left: 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 18px;
        z-index: 10000;
        position: relative;
    }

    .nav-links li {
        width: 100%;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links li a {
        width: 100%;
        display: block;
        color: #fff;
    }

    .footer-inner {
        flex-direction: column;
        gap: 25px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo-text {
        text-align: center;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 0 30px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 80px 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .hero-right {
        display: none;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    [style*="grid-template-columns:repeat(4"] {
        grid-template-columns: 1fr 1fr !important;
    }

    .situations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section--soft {
        padding: 80px 30px;
    }

    .practice-page {
        padding: 120px 30px 80px;
    }

    .what-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .what-we-do {
        padding: 80px 30px;
    }

    .what-left {
        max-width: none;
    }

    .why-header {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .engagements-grid {
        grid-template-columns: 1fr;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .capability-highlight {
        grid-column: 1;
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .founder-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-header {
        padding: 140px 30px 80px;
    }

    .modal-panel {
        width: 100vw;
    }

    .modal-header {
        padding: 36px 28px 32px;
    }

    .modal-body {
        padding: 40px 28px;
    }

    .modal-form .form-row {
        grid-template-columns: 1fr;
    }

    .site-logo {
        height: 44px;
    }

    .site-logo-footer {
        height: 52px;
    }
}

@media (max-width: 1024px) {
    .situations-grid {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0;
    }

    .form-select {
        width: 100%;
    }

    .what-grid,
    .contact-grid {
        gap: 20px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-stat {
        padding: 20px 15px;
    }

    .situation-card {
        width: calc(100% / 2);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-left {
        text-align: center;
    }

    .industries-subheader {
        letter-spacing: 0;
    }

    .section-inner {
        text-align: center;
    }

    .section-eyebrow {
        justify-content: center;
    }

    .founder-portrait {
        margin: 0 auto;
    }

    .contact-grid {
        margin: 0;
    }

    section {
        padding: 20px !important;
    }

    .form-label {
        text-align: start;
    }

    .hero-right {
        display: block;
    }

    .hero-stat {
        text-align: center;
        align-items: center;
    }

    p,
    .hero-desc,
    .hero-desc-para,
    .what-body,
    .what-body p,
    .industry-desc,
    .why-card-desc,
    .engagement-desc,
    .founder-bio,
    .founder-bio p,
    .capability-desc,
    .capability-highlight-desc,
    .modal-intro,
    .contact-info-value,
    .page-header-sub,
    .step-desc,
    .focus-area-desc,
    .custom-para,
    .hero-motto,
    .situation-card__desc,
    .strategic-desc,
    .feature-card__desc,
    .about-paragraph,
    .contact-form-intro,
    .section-intro,
    .hero-stat-text {
        max-width: 100%;
        width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero {
        padding-bottom: 150px !important;
    }

    .hero-bg::after {
        display: none;
    }
}

@media (max-width: 500px) {
    .modal-title {
        font-size: calc(var(--font-size-heading) * 0.65);
    }

    .situation-card {
        width: 100%;
    }

    .hero-stat-text {
        letter-spacing: 0;
    }

    .hero-title,
    .section-title,
    .page-header-title,
    .founder-name,
    .modal-title,
    .modal-titles,
    .capability-highlight-title,
    .footer-logo-text,
    .hero-brand__name,
    .hero-brand__suffix,
    .section-title em {
        font-size: 30px !important;
    }

    .section-subtitle,
    .section-eyebrow-text,
    .hero-eyebrow-text,
    .nav-logo-main,
    .industry-title,
    .why-card-title,
    .engagement-title,
    .capability-title,
    .hero-tagline,
    .contact-tagline,
    .modal-section-title,
    .modal-form-title,
    .modal-closing,
    .founder-title-text,
    .modal-eyebrow,
    .industries-subheader,
    .situation-card__title,
    .feature-card__title {
        font-size: 20px !important;
        letter-spacing: 0 !important;
    }

    .section-intro--spaced {
        margin-bottom: 0px;
    }

    .industry-card {
        padding: 21px 20px;
    }
}

.hero-title,
.section-title,
.page-header-title,
.founder-name,
.modal-title,
.modal-titles,
.capability-highlight-title,
.footer-logo-text,
.hero-brand__name,
.hero-brand__suffix {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-heading);
}

.hero-brand__name {
    font-size: calc(var(--font-size-heading) * 1.75);
}

.hero-brand__suffix {
    font-size: calc(var(--font-size-subheading) * 0.75);
}

.section-subtitle,
.section-eyebrow-text,
.hero-eyebrow-text,
.nav-logo-main,
.industry-title,
.why-card-title,
.engagement-title,
.capability-title,
.hero-tagline,
.contact-tagline,
.modal-section-title,
.modal-form-title,
.modal-closing,
.founder-title-text,
.modal-eyebrow,
.industries-subheader,
.situation-card__title,
.feature-card__title {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
}

p,
.hero-desc,
.hero-desc-para,
.what-body,
.what-body p,
.industry-desc,
.why-card-desc,
.engagement-desc,
.founder-bio,
.founder-bio p,
.capability-desc,
.capability-highlight-desc,
.modal-intro,
.contact-info-value,
.page-header-sub,
.step-desc,
.focus-area-desc,
.custom-para,
.hero-motto,
.situation-card__desc,
.strategic-desc,
.feature-card__desc,
.about-paragraph,
.contact-form-intro,
.section-intro,
.hero-stat-text {
    font-family: var(--font-family-body);
    font-size: 1em;
}

.what-we-do .what-body,
.what-we-do .what-body p {
    font-family: var(--font-family-body);
    font-size: 1em;
}

.what-we-do .philosophy-title {
    font-family: var(--font-family-body);
    font-size: var(--fs-sm);
}

.what-we-do .philosophy-text p,
.what-we-do .philosophy-quote {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-subheading);
}

.what-we-do .philosophy-signature {
    font-family: var(--font-family-body);
    font-size: var(--fs-xs);
}