:root {
    --navy-950: #071326;
    --navy-900: #102042;
    --navy-850: #16294e;
    --navy-800: #1b315d;
    --gold-600: #b77c2a;
    --gold-500: #c9903d;
    --gold-400: #dca85a;
    --ink: #121b2b;
    --muted: #667085;
    --surface: #ffffff;
    --surface-soft: #f7f8fa;
    --surface-blue: #eef2f7;
    --border: #e2e7ee;
    --success: #1f7a4d;
    --success-bg: #edf9f2;
    --danger: #b42318;
    --danger-bg: #fff1f0;
    --shadow-soft: 0 8px 28px rgba(16, 32, 66, 0.08);
    --shadow-card: 0 18px 48px rgba(16, 32, 66, 0.12);
    --radius-sm: 0.5rem;
    --radius: 0.8rem;
    --radius-lg: 1.25rem;
    --header-height: 5rem;
    --container-wide: 80rem;
    --container-narrow: 70rem;
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--navy-900);
    /* font-family: "Playfair Display", Georgia, serif; */
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 5.5rem);
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3.4rem);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
    margin: 0;
}

p + p {
    margin-top: 1.2rem;
}

:focus-visible {
    outline: 3px solid var(--gold-400);
    outline-offset: 3px;
}

::selection {
    background: rgba(201, 144, 61, 0.25);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    transform: translateY(-160%);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--navy-900);
    padding: 0.7rem 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.container-wide,
.container-narrow {
    width: min(100% - 2rem, var(--container-wide));
    margin-inline: auto;
}

.container-narrow {
    max-width: var(--container-narrow);
}

.site-main {
    min-height: 60vh;
    padding-top: var(--header-height);
}

.section {
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.section--tight-top {
    padding-top: 0;
}

.section--subtle {
    background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.section--secondary {
    background: var(--surface-blue);
}

.eyebrow {
    margin-bottom: 1rem;
    color: var(--gold-600);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

.section-heading {
    max-width: 48rem;
    margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-heading h2 + p,
.section-heading-row h2 + p {
    margin-top: 1rem;
}

.section-heading > p:not(.eyebrow),
.section-heading-row > div > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.lead-copy {
    margin-top: 1.4rem;
    color: #39445a;
    font-size: clamp(1.08rem, 1.7vw, 1.3rem);
    line-height: 1.85;
}

.muted-copy {
    margin-top: 1rem;
    color: var(--muted);
}

.prose {
    color: #39445a;
}

.prose--large {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.95;
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 19, 38, 0.96);
    box-shadow: 0 6px 24px rgba(7, 19, 38, 0.12);
    backdrop-filter: blur(16px);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    background: rgba(7, 19, 38, 0.99);
    box-shadow: 0 8px 30px rgba(7, 19, 38, 0.22);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo {
    display: flex;
    width: 9.9rem;
    height: 3.35rem;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    height: 100%;
    align-items: center;
    gap: clamp(1.1rem, 2.2vw, 2rem);
}

.nav-link {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color var(--transition);
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 0.9rem;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-400);
    content: "";
    opacity: 0;
    transform: scaleX(0.25);
    transition: opacity var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.menu-toggle svg {
    width: 1.4rem;
    height: 1.4rem;
}

.menu-toggle__close {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
    display: block;
}

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy-950);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.28);
}

.mobile-nav[hidden] {
    display: none;
}

.mobile-nav__inner {
    display: grid;
    padding-block: 0.7rem 1.25rem;
}

.mobile-nav__link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    padding: 0.92rem 0;
    font-weight: 600;
}

.mobile-nav__link.is-active {
    color: var(--gold-400);
}

/* Hero */
.home-hero {
    position: relative;
    min-height: min(51rem, calc(100vh - var(--header-height)));
    isolation: isolate;
    overflow: hidden;
    background-color: var(--navy-950);
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
}

.home-hero__overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 19, 38, 0.95) 0%, rgba(7, 19, 38, 0.79) 44%, rgba(7, 19, 38, 0.28) 80%),
        linear-gradient(0deg, rgba(7, 19, 38, 0.45), transparent 45%);
}

.home-hero__inner {
    display: flex;
    min-height: inherit;
    align-items: center;
    padding-block: clamp(4rem, 9vw, 8rem);
}

.home-hero__content {
    max-width: 48rem;
}

.home-hero h1 {
    max-width: 46rem;
    color: #fff;
    text-wrap: balance;
}

.home-hero__body {
    max-width: 43rem;
    margin-top: 1.6rem;
    color: rgba(255, 255, 255, 0.81);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.85;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.2rem;
}

.button {
    display: inline-flex;
    min-height: 3.15rem;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.76rem 1.25rem;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
    cursor: pointer;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button svg,
.text-link svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.button:hover {
    transform: translateY(-2px);
}

.button--accent {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-950);
    box-shadow: 0 12px 25px rgba(201, 144, 61, 0.22);
}

.button--accent:hover {
    background: linear-gradient(135deg, #d19b4b, #e1b468);
    box-shadow: 0 16px 30px rgba(201, 144, 61, 0.3);
}

.button--primary {
    background: var(--navy-900);
    color: #fff;
    box-shadow: 0 10px 24px rgba(16, 32, 66, 0.16);
}

.button--primary:hover {
    background: var(--navy-800);
}

.button--outline,
.button--outline-light {
    border-color: rgba(16, 32, 66, 0.25);
    color: var(--navy-900);
}

.button--outline:hover {
    border-color: var(--navy-900);
    background: var(--navy-900);
    color: #fff;
}

.button--outline-light {
    border-color: rgba(255, 255, 255, 0.48);
    color: #fff;
}

.button--outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.button[disabled],
.button.is-loading {
    cursor: wait;
    opacity: 0.75;
    transform: none;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--gold-600);
    font-size: 0.9rem;
    font-weight: 700;
    transition: color var(--transition), gap var(--transition);
}

.text-link:hover {
    gap: 0.7rem;
    color: var(--navy-900);
}

.text-link--large {
    font-size: 1rem;
}

/* Page headers */
.page-header {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 18%, rgba(201, 144, 61, 0.22), transparent 27rem),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-header::after {
    position: absolute;
    right: -7rem;
    bottom: -11rem;
    width: 29rem;
    height: 29rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.page-header__inner {
    position: relative;
    z-index: 1;
    padding-block: clamp(5.5rem, 10vw, 8.5rem);
}

.page-header h1 {
    max-width: 54rem;
    color: #fff;
    font-size: clamp(2.75rem, 5.7vw, 5.2rem);
    text-wrap: balance;
}

.page-header__subtitle {
    max-width: 49rem;
    margin-top: 1.4rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1.05rem, 1.8vw, 1.24rem);
    line-height: 1.8;
}

/* Cards and home sections */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card {
    display: flex;
    min-height: 21rem;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    padding: clamp(1.5rem, 2.6vw, 2.1rem);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
    border-color: rgba(201, 144, 61, 0.5);
    box-shadow: var(--shadow-card);
    transform: translateY(-6px);
}

.feature-card__icon {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    border-radius: 0.8rem;
    background: rgba(201, 144, 61, 0.12);
    color: var(--gold-600);
}

.feature-card__icon svg {
    width: 1.55rem;
    height: 1.55rem;
}

.feature-card h3 {
    margin-top: 1.45rem;
}

.feature-card > p {
    margin-top: 0.85rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.feature-card .text-link {
    margin-top: auto;
    padding-top: 1.4rem;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2.5rem, 7vw, 6rem);
}

.split-grid--center {
    align-items: center;
}

.content-image {
    width: 100%;
    min-height: 23rem;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-card);
}

.content-image--portrait {
    max-height: 40rem;
    object-position: center;
}

.content-image--contain {
    min-height: 0;
    object-fit: contain;
    box-shadow: none;
}

.split-grid .button {
    margin-top: 1.8rem;
}

.map-section img {
    width: min(100%, 55rem);
    margin: 0 auto;
    filter: drop-shadow(0 18px 26px rgba(16, 32, 66, 0.12));
}

.company-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.company-mini-card {
    display: flex;
    min-height: 6.5rem;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    padding: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.company-mini-card > span,
.company-card__mark {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--gold-400);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.company-mini-card p {
    color: var(--navy-900);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
}

.cta-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 0%, rgba(201, 144, 61, 0.24), transparent 22rem),
        var(--navy-900);
    padding: clamp(2.25rem, 6vw, 5rem);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.cta-card h2 {
    color: #fff;
}

.cta-card p {
    max-width: 38rem;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.75);
}

.cta-card .button {
    margin-top: 1.75rem;
}

/* Lists */
.benefit-grid,
.check-list,
.number-list,
.detail-list,
.strategy-grid,
.contact-stats,
.footer-links,
.footer-contact {
    list-style: none;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.benefit-grid li,
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.benefit-grid li {
    border: 1px solid rgba(16, 32, 66, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.75);
    padding: 1.15rem;
}

.check-icon {
    display: grid;
    width: 1.55rem;
    height: 1.55rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: rgba(201, 144, 61, 0.15);
    color: var(--gold-600);
    margin-top: 0.1rem;
}

.check-icon svg {
    width: 0.9rem;
    height: 0.9rem;
}

.number-list {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.8rem;
}

.number-list li,
.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.number-list li > span {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--gold-400);
    font-weight: 800;
}

.number-list p,
.detail-list p {
    color: #39445a;
}

.detail-list {
    display: grid;
    gap: 1.4rem;
}

.detail-list li {
    border-top: 1px solid var(--border);
    padding-top: 1.4rem;
}

.detail-list li > span {
    color: var(--gold-600);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
}

/* Services */
.service-list {
    display: grid;
    gap: clamp(4rem, 9vw, 7.5rem);
}

.service-item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(2.25rem, 6vw, 5.5rem);
}

.service-item--reverse .service-item__content {
    order: 2;
}

.service-item--reverse img {
    order: 1;
}

.service-item__content h2 {
    margin-bottom: 1.6rem;
}

.check-list {
    display: grid;
    gap: 0.9rem;
    color: #39445a;
}

.service-item .button {
    margin-top: 1.8rem;
}

/* Investments */
.gallery-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: clamp(4rem, 8vw, 7rem);
}

.gallery-pair img {
    width: 100%;
    height: clamp(19rem, 40vw, 34rem);
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    counter-reset: strategies;
}

.strategy-grid li {
    display: flex;
    min-height: 9rem;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    padding: 1.4rem;
    box-shadow: var(--shadow-soft);
}

.strategy-grid li > span {
    color: var(--gold-500);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
}

.strategy-grid p {
    color: #39445a;
}

/* Group companies */
.company-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.company-card {
    display: flex;
    /* min-height: 19rem; */
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    padding: clamp(1.4rem, 2.8vw, 2rem);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.company-card:hover {
    border-color: rgba(201, 144, 61, 0.4);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.company-card__heading {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-card__heading h2 {
    font-size: 1.4rem;
}

.company-card__heading p {
    margin-top: 0.25rem;
    color: var(--gold-600);
    font-size: 0.8rem;
    font-weight: 700;
}

.company-card__description {
    margin-top: 1.3rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.company-card .text-link {
    margin-top: auto;
    padding-top: 1.2rem;
}

.group-banner {
    padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
}

.group-banner img {
    width: 100%;
    max-height: 34rem;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-card);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(2rem, 6vw, 5rem);
}

.office-list {
    display: grid;
    gap: 1rem;
}

.office-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 1.35rem;
}

.office-card h2 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #525f75;
    font-size: 0.91rem;
}

.contact-line + .contact-line {
    margin-top: 0.75rem;
}

.contact-line svg {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    color: var(--gold-600);
    margin-top: 0.23rem;
}

.contact-line ul {
    list-style: none;
}

.contact-line a:hover {
    color: var(--gold-600);
}

.contact-form {
    display: grid;
    gap: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    padding: clamp(1.4rem, 4vw, 2.5rem);
    box-shadow: var(--shadow-card);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-field label {
    color: var(--navy-900);
    font-size: 0.88rem;
    font-weight: 700;
}

.form-field label > span:not(.optional) {
    color: var(--danger);
}

.optional {
    color: #8a94a6;
    font-size: 0.78rem;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid #ccd4df;
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    padding: 0.78rem 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field textarea {
    min-height: 10rem;
    resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
    border-color: #aeb8c7;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--gold-500);
    outline: none;
    box-shadow: 0 0 0 4px rgba(201, 144, 61, 0.13);
}

.form-field [aria-invalid="true"] {
    border-color: var(--danger);
}

.field-error {
    color: var(--danger);
    font-size: 0.8rem;
    line-height: 1.4;
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border: 1px solid;
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alert svg {
    width: 1.2rem;
    height: 1.2rem;
    flex: 0 0 auto;
    margin-top: 0.12rem;
}

.alert p {
    margin-top: 0.25rem;
}

.alert--success {
    border-color: rgba(31, 122, 77, 0.25);
    background: var(--success-bg);
    color: var(--success);
}

.alert--error {
    border-color: rgba(180, 35, 24, 0.22);
    background: var(--danger-bg);
    color: var(--danger);
}

.contact-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.contact-intro > img {
    width: 100%;
    min-height: 25rem;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-card);
}

.contact-intro h2 + p {
    margin-top: 1.2rem;
    color: #455168;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.contact-stats li {
    display: grid;
    gap: 0.2rem;
    border-top: 2px solid rgba(201, 144, 61, 0.45);
    padding-top: 0.85rem;
}

.contact-stats svg {
    width: 1.15rem;
    height: 1.15rem;
    color: var(--gold-600);
}

.contact-stats strong {
    color: var(--navy-900);
    font-size: 1.2rem;
}

.contact-stats span {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.35;
}

/* Footer */
.site-footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.75fr 1fr;
    gap: clamp(2rem, 7vw, 6rem);
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-brand img {
    width: 11rem;
    height: 5.7rem;
    object-fit: contain;
}

.footer-brand p {
    max-width: 27rem;
    margin-top: 1rem;
    font-size: 0.92rem;
}

.footer-heading {
    margin-bottom: 1.1rem;
    color: #fff;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-links a,
.footer-contact a {
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-400);
}

.footer-contact {
    display: grid;
    gap: 0.9rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.88rem;
}

.footer-contact svg {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    color: var(--gold-400);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    padding-block: 1.25rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.79rem;
}

/* Error page */
.error-page {
    display: grid;
    min-height: 70vh;
    place-items: center;
    padding-block: 5rem;
    text-align: center;
}

.error-page p {
    max-width: 36rem;
    margin: 1rem auto 0;
    color: var(--muted);
}

.error-page .button {
    margin-top: 1.5rem;
}

/* Motion */
.reveal-on-load {
    animation: reveal-up 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 72rem) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 62rem) {
    :root {
        --header-height: 4.6rem;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-logo {
        width: 8.8rem;
        height: 3rem;
    }

    .split-grid,
    .service-item,
    .contact-intro {
        grid-template-columns: 1fr;
    }

    .service-item--reverse .service-item__content,
    .service-item--reverse img {
        order: initial;
    }

    .service-item img {
        order: -1;
    }

    .content-image {
        min-height: 20rem;
        max-height: 36rem;
    }

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

    .office-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.3fr 0.7fr;
    }

    .footer-grid > :last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 47rem) {
    .container-wide,
    .container-narrow {
        width: min(100% - 1.5rem, var(--container-wide));
    }

    .home-hero {
        min-height: 42rem;
        background-position: 62% center;
    }

    .home-hero__overlay {
        background: linear-gradient(90deg, rgba(7, 19, 38, 0.96), rgba(7, 19, 38, 0.72));
    }

    .button-row,
    .button-row .button {
        width: 100%;
    }

    .feature-grid,
    .company-strip,
    .benefit-grid,
    .gallery-pair,
    .strategy-grid,
    .company-grid,
    .form-grid,
    .office-list {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 18rem;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-pair img {
        height: 22rem;
    }

    .contact-stats {
        grid-template-columns: 1fr;
    }

    .contact-stats li {
        grid-template-columns: auto auto 1fr;
        align-items: center;
        column-gap: 0.6rem;
    }

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

    .footer-grid > :last-child {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
