:root {
    --blue: #0b5fe9;
    --blue-strong: #074fc6;
    --blue-dark: #0b2450;
    --blue-soft: #edf4ff;
    --blue-pale: #f7faff;
    --white: #ffffff;
    --ink: #10213a;
    --muted: #66758b;
    --line: rgba(11, 95, 233, .12);
    --shadow-sm: 0 14px 40px rgba(16, 33, 58, .08);
    --shadow-md: 0 28px 80px rgba(16, 33, 58, .14);
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 42px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--white);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 118px 0;
}

.scroll-progress {
    position: fixed;
    z-index: 2500;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #85b2ff);
}

.header {
    position: fixed;
    z-index: 1200;
    inset: 0 0 auto;
    padding:
        max(16px, env(safe-area-inset-top))
        0
        16px;
    transition: .3s ease;
}

.header.scrolled {
    padding:
        max(9px, env(safe-area-inset-top))
        0
        9px;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 40px rgba(16,33,58,.07);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: var(--blue);
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.07em;
    box-shadow: 0 10px 30px rgba(11,95,233,.22);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    letter-spacing: -.025em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.desktop-nav a {
    position: relative;
    color: #35455c;
    font-size: 12px;
    font-weight: 700;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    transition: .22s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: var(--blue);
    color: white;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(11,95,233,.2);
    transition: .22s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    background: var(--blue-strong);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0 13px;
    border: 0;
    border-radius: 15px;
    background: var(--blue);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    border-radius: 999px;
    background: white;
}

.mobile-menu {
    position: fixed;
    z-index: 2200;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding:
        max(24px, env(safe-area-inset-top))
        24px
        max(24px, env(safe-area-inset-bottom));
    background: white;
    color: var(--ink);
    transform: translateX(100%);
    visibility: hidden;
    transition:
        transform .4s cubic-bezier(.77,0,.18,1),
        visibility .4s;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--blue-soft);
}

.mobile-menu-head,
.mobile-menu nav,
.mobile-menu-bottom {
    position: relative;
    z-index: 2;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-close {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: white;
    color: var(--blue);
    font-size: 20px;
}

.mobile-menu nav {
    display: grid;
    margin: auto 0;
}

.mobile-menu nav a {
    display: grid;
    grid-template-columns: 38px 1fr 24px;
    align-items: center;
    gap: 12px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
}

.mobile-menu nav a span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.mobile-menu nav a strong {
    font-family: "Manrope", sans-serif;
    font-size: clamp(27px, 8vw, 42px);
    letter-spacing: -.04em;
}

.mobile-menu nav a > i {
    color: var(--blue);
}

.mobile-menu-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.mobile-menu-bottom p {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
}

.mobile-menu-bottom div {
    display: flex;
    gap: 8px;
}

.mobile-menu-bottom div a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--blue);
}

.hero {
    position: relative;
    min-height: 100svh;
    padding:
        max(128px, calc(104px + env(safe-area-inset-top)))
        0
        max(38px, env(safe-area-inset-bottom));
    background:
        radial-gradient(circle at 83% 18%, rgba(11,95,233,.09), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(rgba(11,95,233,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11,95,233,.045) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.hero-orb-one {
    width: 360px;
    height: 360px;
    right: -130px;
    top: 80px;
    background: rgba(11,95,233,.09);
}

.hero-orb-two {
    width: 230px;
    height: 230px;
    left: -100px;
    bottom: 60px;
    background: rgba(133,178,255,.14);
}

.hero-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 54px;
    min-height: calc(100svh - 218px);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
}

.hero h1 {
    max-width: 760px;
    margin: 24px 0 26px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(58px, 7vw, 101px);
    font-weight: 800;
    line-height: .92;
    letter-spacing: -.07em;
}

.hero h1 em,
.section-heading h2 em,
.family-copy h2 em {
    color: var(--blue);
    font-family: Georgia, serif;
    font-weight: 400;
}

.hero-description {
    max-width: 675px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 800;
    transition: .22s ease;
}

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

.button-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 18px 45px rgba(11,95,233,.2);
}

.button-secondary {
    border-color: var(--line);
    background: white;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.button-white {
    background: white;
    color: var(--blue);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.hero-identity {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 38px;
}

.hero-identity > div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 70px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.84);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

.hero-identity i {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--blue-soft);
    color: var(--blue);
}

.hero-identity span {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.45;
}

.hero-identity strong {
    display: block;
    color: var(--ink);
    font-size: 11px;
}

.hero-visual {
    position: relative;
    min-height: 650px;
    perspective: 1200px;
}

.hero-shape {
    position: absolute;
    inset: 72px 35px 45px;
    border-radius: 48% 52% 30% 70% / 44% 36% 64% 56%;
    background:
        radial-gradient(circle at 50% 24%, #8cb8ff, transparent 28%),
        linear-gradient(145deg, #dceaff, #0b5fe9);
    box-shadow: 0 45px 100px rgba(11,95,233,.2);
    animation: morph 10s ease-in-out infinite;
}

.hero-ring {
    position: absolute;
    border: 1px solid rgba(11,95,233,.2);
    border-radius: 50%;
    animation: spin 18s linear infinite;
}

.hero-ring-one {
    inset: 35px 5px 12px;
}

.hero-ring-two {
    inset: 75px 45px 52px;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 22s;
}

.hero-photo {
    position: absolute;
    z-index: 3;
    inset: 92px 56px 68px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    border-radius: 48% 52% 30% 70% / 44% 36% 64% 56%;
    animation: morph 10s ease-in-out infinite;
    box-shadow: 0 24px 60px rgba(16,33,58,.16);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(to top, rgba(11,36,80,.18), transparent);
    pointer-events: none;
}

.floating-card {
    position: absolute;
    z-index: 6;
    border: 1px solid rgba(11,95,233,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 22px 60px rgba(16,33,58,.14);
    backdrop-filter: blur(16px);
    animation: float3d 4.5s ease-in-out infinite;
}

.floating-card-city {
    left: 0;
    top: 115px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 245px;
    padding: 14px 16px;
}

.floating-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: var(--blue-soft);
    color: var(--blue);
}

.floating-card-city div {
    display: grid;
    gap: 3px;
}

.floating-card small {
    color: var(--muted);
    font-size: 9px;
    text-transform: uppercase;
}

.floating-card strong {
    font-size: 11px;
}

.floating-card-quote {
    right: 0;
    bottom: 105px;
    width: 215px;
    padding: 17px 18px;
    animation-delay: .7s;
}

.floating-card-quote i {
    color: var(--blue);
    font-size: 24px;
}

.floating-card-quote p {
    margin: 8px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.floating-card-projects {
    right: 34px;
    top: 55px;
    display: grid;
    padding: 15px 18px;
    animation-delay: 1.3s;
}

.floating-card-projects strong {
    color: var(--blue);
    font-family: "Manrope", sans-serif;
    font-size: 24px;
}

.floating-card-projects span {
    color: var(--muted);
    font-size: 9px;
}

.hero-watermark {
    position: absolute;
    right: -26px;
    bottom: 8px;
    color: rgba(11,95,233,.1);
    font-family: "Manrope", sans-serif;
    font-size: 74px;
    font-weight: 800;
    letter-spacing: .14em;
    writing-mode: vertical-rl;
}

.hero-bottom {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
}

.hero-scroll,
.hero-social {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-scroll i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue);
    animation: float 2.2s ease-in-out infinite;
}

.hero-social a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: white;
    color: var(--blue);
}

.smart-links {
    position: relative;
    z-index: 10;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 40px rgba(16,33,58,.05);
}

.smart-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.smart-links-grid > a {
    display: grid;
    grid-template-columns: 34px 1fr 22px;
    align-items: center;
    gap: 14px;
    min-height: 110px;
    padding: 22px 28px;
    border-right: 1px solid var(--line);
    transition: .22s ease;
}

.smart-links-grid > a:last-child {
    border-right: 0;
}

.smart-links-grid > a:hover {
    background: var(--blue-pale);
}

.smart-links-grid > a > span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.smart-links-grid > a > div {
    display: grid;
    gap: 4px;
}

.smart-links-grid strong {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

.smart-links-grid small {
    color: var(--muted);
    font-size: 10px;
}

.smart-links-grid i {
    color: var(--blue);
}

.section-heading,
.projects-heading {
    display: grid;
    grid-template-columns: 1.14fr .86fr;
    align-items: end;
    gap: 70px;
}

.section-heading h2,
.family-copy h2,
.business-copy h2,
.areas-heading h2,
.projects-heading h2,
.results-heading h2,
.vision-copy h2,
.contact-copy h2 {
    margin: 17px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5.7vw, 76px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.06em;
}

.section-text p,
.family-copy > p,
.business-copy > p,
.vision-copy > p,
.contact-copy > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.82;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.inline-link i {
    transition: transform .22s ease;
}

.inline-link:hover i {
    transform: translateX(5px);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    margin-top: 64px;
}

.about-photo {
    position: relative;
    min-height: 560px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #dceaff, #0b5fe9);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(to top, rgba(11,36,80,.68), transparent);
}

.about-photo-label {
    position: absolute;
    z-index: 3;
    left: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 15px;
    background: rgba(255,255,255,.92);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.about-content {
    display: grid;
    align-content: stretch;
    gap: 20px;
}

.quote-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 365px;
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
}

.quote-card i {
    color: var(--blue);
    font-size: 34px;
}

.quote-card p {
    margin: 22px 0 28px;
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.42;
    letter-spacing: -.035em;
}

.quote-card span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.about-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-mini-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--blue-pale);
}

.about-mini-grid i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: var(--blue);
    color: white;
}

.about-mini-grid strong {
    font-family: "Manrope", sans-serif;
    font-size: 17px;
}

.about-mini-grid p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.journey-card {
    position: relative;
    min-height: 320px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
    transform-style: preserve-3d;
    transition: .28s ease;
}

.journey-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: var(--shadow-md);
}

.journey-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.journey-head > span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.journey-head > i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 20px;
}

.journey-card h3 {
    margin: 40px 0 12px;
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    letter-spacing: -.04em;
}

.journey-card p {
    color: var(--muted);
    line-height: 1.7;
}

.journey-card a {
    position: absolute;
    left: 30px;
    bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.family {
    background: var(--blue-pale);
}

.family-layout {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 72px;
}

.family-gallery {
    position: relative;
    min-height: 650px;
    perspective: 1200px;
}

.family-main,
.family-side {
    position: absolute;
    border: 8px solid white;
    background: linear-gradient(145deg, #dceaff, #0b5fe9);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.family-main img,
.family-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.family-main {
    inset: 0 120px 60px 0;
    border-radius: 46px;
    transform: rotateY(2deg) rotateX(1deg);
}

.family-side {
    right: 0;
    bottom: 0;
    width: 250px;
    height: 310px;
    border-radius: 30px;
    transform: rotateY(-5deg) rotateZ(1deg);
}

.family-badge {
    position: absolute;
    left: 34px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.family-badge i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--blue);
    color: white;
}

.family-badge span {
    display: grid;
    gap: 2px;
    color: var(--muted);
    font-size: 10px;
}

.family-badge strong {
    color: var(--ink);
    font-size: 14px;
}

.family-values {
    display: grid;
    gap: 14px;
    margin: 34px 0;
}

.family-values > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.family-values i {
    display: grid;
    place-items: center;
    min-width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--blue);
    color: white;
}

.family-values span {
    display: grid;
    gap: 3px;
    color: var(--muted);
    font-size: 11px;
}

.family-values strong {
    color: var(--ink);
    font-size: 13px;
}

.business {
    padding-top: 25px;
}

.business-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px;
    padding: 70px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--blue-dark), #133d7a);
    color: white;
    overflow: hidden;
}

.section-kicker-light {
    color: #b7d1ff;
}

.business-copy > p {
    color: rgba(255,255,255,.66);
}

.business-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.business-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.78);
    font-size: 10px;
    font-weight: 700;
}

.business-points i {
    color: #a8c8ff;
}

.business-visual {
    position: relative;
    min-height: 510px;
    perspective: 1200px;
}

.business-photo {
    position: absolute;
    inset: 0 80px 0 0;
    border: 8px solid rgba(255,255,255,.1);
    border-radius: 38px;
    background: linear-gradient(145deg, #6fa5ff, #0b5fe9);
    box-shadow: 0 35px 90px rgba(0,0,0,.22);
    overflow: hidden;
    transform: rotateY(-4deg);
}

.business-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-card {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    box-shadow: 0 22px 60px rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
    animation: float3d 4.6s ease-in-out infinite;
}

.business-card i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--blue-soft);
    color: var(--blue);
}

.business-card div {
    display: grid;
    gap: 2px;
}

.business-card strong {
    font-size: 12px;
}

.business-card span {
    color: var(--muted);
    font-size: 9px;
}

.business-card-one {
    top: 90px;
}

.business-card-two {
    bottom: 90px;
    animation-delay: 1s;
}

.areas {
    background: white;
}

.areas-heading {
    max-width: 820px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 58px;
}

.area-card {
    position: relative;
    min-height: 300px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: .28s ease;
}

.area-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: var(--shadow-md);
}

.area-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--blue);
    color: white;
    font-size: 21px;
}

.area-card > span {
    position: absolute;
    right: 24px;
    top: 24px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
}

.area-card h3 {
    margin: 38px 0 12px;
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    letter-spacing: -.035em;
}

.area-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.area-card a {
    position: absolute;
    left: 28px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.projects {
    background: var(--blue-pale);
}

.projects-heading {
    align-items: end;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.project-filters button {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: .22s ease;
}

.project-filters button.active,
.project-filters button:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 55px;
}

.project-card {
    grid-column: span 4;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: .28s ease;
}

.project-featured {
    grid-column: span 6;
}

.project-card.hidden {
    display: none;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.project-image {
    position: relative;
    height: 280px;
    background: linear-gradient(145deg, #dceaff, #0b5fe9);
    overflow: hidden;
}

.project-featured .project-image {
    height: 350px;
}

.project-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(to top, rgba(11,36,80,.66), transparent);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-category {
    position: absolute;
    z-index: 3;
    left: 18px;
    top: 18px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-open {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: white;
    color: var(--blue);
    box-shadow: 0 14px 35px rgba(0,0,0,.14);
}

.project-body {
    padding: 26px;
}

.project-body > span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.project-body h3 {
    margin: 11px 0 12px;
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -.04em;
}

.project-featured .project-body h3 {
    font-size: 31px;
}

.project-body p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.project-meta span {
    color: var(--muted);
    font-size: 9px;
}

.project-meta i {
    color: var(--blue);
}

.projects-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 38px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
}

.projects-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.results {
    position: relative;
    background: var(--blue-dark);
    color: white;
    overflow: hidden;
}

.results-decoration {
    position: absolute;
    right: -140px;
    top: -180px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    box-shadow:
        0 0 0 60px rgba(255,255,255,.025),
        0 0 0 120px rgba(255,255,255,.018);
}

.results-heading {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.results-heading p {
    max-width: 650px;
    color: rgba(255,255,255,.56);
    line-height: 1.75;
}

.results-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 60px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.12);
    overflow: hidden;
}

.result-card {
    min-height: 280px;
    padding: 30px;
    background: rgba(11,36,80,.96);
}

.result-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.result-head span {
    color: #a9c7ff;
    font-size: 9px;
    font-weight: 800;
}

.result-head i {
    color: rgba(255,255,255,.4);
}

.result-card > strong {
    display: block;
    margin-top: 54px;
    font-family: "Manrope", sans-serif;
    font-size: 57px;
    letter-spacing: -.07em;
}

.result-card p {
    margin: 5px 0 20px;
    font-size: 13px;
    font-weight: 700;
}

.result-card small {
    color: rgba(255,255,255,.36);
    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vision {
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: end;
    overflow: hidden;
}

.vision-photo,
.vision-overlay {
    position: absolute;
    inset: 0;
}

.vision-photo {
    background: linear-gradient(145deg, #6fa5ff, #0b2450);
}

.vision-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-overlay {
    background:
        linear-gradient(to top, rgba(11,36,80,.96), rgba(11,36,80,.12) 68%),
        linear-gradient(90deg, rgba(11,36,80,.72), transparent 68%);
}

.vision-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr .8fr;
    align-items: end;
    gap: 70px;
    color: white;
}

.vision-copy > p {
    color: rgba(255,255,255,.7);
}

.vision-list {
    display: grid;
    gap: 10px;
}

.vision-list article {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 70px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 17px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
}

.vision-list span {
    color: #a9c7ff;
    font-size: 9px;
    font-weight: 800;
}

.vision-list strong {
    font-size: 13px;
}

.contact {
    padding-top: 30px;
}

.contact-panel {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 70px;
    padding: 72px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--blue), var(--blue-strong));
    color: white;
    box-shadow: var(--shadow-md);
}

.contact-copy > p {
    color: rgba(255,255,255,.65);
}

.contact-links {
    display: grid;
    gap: 12px;
}

.contact-links > a {
    display: grid;
    grid-template-columns: 48px 1fr 24px;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 14px 17px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    transition: .22s ease;
}

.contact-links > a:hover {
    transform: translateX(6px);
    background: rgba(255,255,255,.12);
}

.contact-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgba(255,255,255,.14);
}

.contact-links > a > span:nth-child(2) {
    display: grid;
    gap: 3px;
}

.contact-links small {
    color: rgba(255,255,255,.48);
    font-size: 9px;
    text-transform: uppercase;
}

.contact-links strong {
    font-size: 12px;
}

.footer {
    padding: 34px 0 calc(34px + env(safe-area-inset-bottom));
    background: white;
}

.footer-main,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer-main {
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line);
}

.footer-main > p {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a,
.back-top {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    color: var(--blue);
}

.footer-bottom {
    padding-top: 22px;
    color: var(--muted);
    font-size: 9px;
}

.footer-bottom div {
    display: flex;
    gap: 15px;
}

.mobile-bottom-nav {
    display: none;
}

.back-top {
    position: fixed;
    z-index: 700;
    right: 20px;
    bottom: 20px;
    border: 0;
    box-shadow: 0 14px 38px rgba(16,33,58,.15);
    opacity: 0;
    pointer-events: none;
    transition: .22s ease;
    cursor: pointer;
}

.back-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.media-placeholder {
    position: relative;
}

.media-placeholder.is-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #dceaff, #0b5fe9);
}

.media-placeholder.is-placeholder::after {
    content: attr(data-label);
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    width: min(76%, 360px);
    transform: translate(-50%, -50%);
    padding: 14px 16px;
    border: 1px dashed rgba(255,255,255,.52);
    border-radius: 14px;
    background: rgba(11,36,80,.6);
    color: white;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.55;
    letter-spacing: .05em;
    text-align: center;
    backdrop-filter: blur(8px);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .75s ease,
        transform .75s ease;
    transition-delay: var(--delay, 0ms);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(7px); }
}

@keyframes float3d {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    50% { transform: translateY(-8px) rotateX(2deg) rotateY(-2deg); }
}

@keyframes morph {
    0%, 100% { border-radius: 48% 52% 30% 70% / 44% 36% 64% 56%; }
    50% { border-radius: 33% 67% 55% 45% / 54% 48% 52% 46%; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 1120px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-layout {
        grid-template-columns: 1fr .9fr;
        gap: 22px;
    }

    .hero-identity {
        grid-template-columns: 1fr;
        max-width: 470px;
    }

    .hero-identity > div {
        min-height: 58px;
    }

    .hero-visual {
        min-height: 610px;
    }

    .journey-grid,
    .areas-grid {
        gap: 14px;
    }

    .project-card,
    .project-featured {
        grid-column: span 6;
    }

    .business-panel,
    .contact-panel {
        padding: 56px;
    }
}

@media (max-width: 860px) {
    .section {
        padding: 90px 0;
    }

    .hero {
        min-height: auto;
        padding-bottom: 38px;
    }

    .hero-layout,
    .section-heading,
    .projects-heading,
    .about-layout,
    .family-layout,
    .business-panel,
    .vision-content,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        min-height: auto;
    }

    .hero-visual {
        min-height: 640px;
        margin-top: 12px;
    }

    .hero-photo {
        inset: 82px 40px 76px;
    }

    .smart-links-grid {
        grid-template-columns: 1fr;
    }

    .smart-links-grid > a {
        min-height: 90px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .smart-links-grid > a:last-child {
        border-bottom: 0;
    }

    .section-heading,
    .projects-heading,
    .family-layout,
    .business-panel,
    .vision-content,
    .contact-panel {
        gap: 32px;
    }

    .about-photo {
        min-height: 520px;
    }

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

    .journey-card {
        min-height: 280px;
    }

    .family-gallery {
        min-height: 600px;
    }

    .business-visual {
        min-height: 500px;
    }

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

    .project-filters {
        justify-content: flex-start;
    }

    .vision {
        min-height: 800px;
    }

    .footer-main,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .header {
        padding:
            max(9px, env(safe-area-inset-top))
            0
            9px;
    }

    .brand-mark {
        width: 43px;
        height: 43px;
        border-radius: 13px;
        font-size: 15px;
    }

    .brand-copy strong {
        font-size: 13px;
    }

    .brand-copy small {
        font-size: 7px;
    }

    .hero {
        padding-top: max(100px, calc(80px + env(safe-area-inset-top)));
        padding-bottom: 24px;
    }

    .hero-grid {
        background-size: 46px 46px;
    }

    .hero h1 {
        margin: 18px 0 20px;
        font-size: clamp(49px, 15vw, 68px);
        line-height: .92;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
        min-height: 54px;
    }

    .hero-identity {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .hero-identity > div {
        min-height: 56px;
    }

    .hero-visual {
        min-height: 580px;
        margin-top: 24px;
    }

    .hero-shape {
        inset: 66px 8px 118px;
    }

    .hero-ring-one {
        inset: 42px 0 94px;
    }

    .hero-ring-two {
        inset: 78px 30px 130px;
    }

    .hero-photo {
        inset: 84px 18px 136px;
        border-radius: 44% 56% 32% 68% / 42% 35% 65% 58%;
    }

    .hero-photo img {
        object-position: center 18%;
    }

    .floating-card-city {
        left: 0;
        top: 56px;
        max-width: 210px;
        padding: 11px 12px;
    }

    .floating-card-quote {
        right: 10px;
        bottom: 6px;
        width: 170px;
        padding: 14px;
    }

    .floating-card-projects {
        right: 12px;
        top: 24px;
    }

    .hero-watermark {
        display: none;
    }

    .hero-bottom,
    .smart-links {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading h2,
    .family-copy h2,
    .business-copy h2,
    .areas-heading h2,
    .projects-heading h2,
    .results-heading h2,
    .vision-copy h2,
    .contact-copy h2 {
        font-size: 40px;
    }

    .section-text p,
    .family-copy > p,
    .business-copy > p,
    .vision-copy > p,
    .contact-copy > p {
        font-size: 14px;
    }

    .about-layout {
        margin-top: 42px;
    }

    .about-photo {
        min-height: 420px;
        border-radius: 28px;
    }

    .about-photo-label {
        left: 14px;
        bottom: 14px;
    }

    .quote-card {
        min-height: 325px;
        padding: 28px;
        border-radius: 28px;
    }

    .quote-card p {
        font-size: 22px;
    }

    .about-mini-grid {
        grid-template-columns: 1fr;
    }

    .journey-card {
        min-height: 290px;
        padding: 25px;
    }

    .journey-card a {
        left: 25px;
        bottom: 25px;
    }

    .family-gallery {
        min-height: 500px;
    }

    .family-main {
        inset: 0 56px 70px 0;
        border-radius: 28px;
    }

    .family-side {
        width: 180px;
        height: 225px;
        border-radius: 22px;
    }

    .family-badge {
        left: 12px;
        bottom: 12px;
    }

    .business-panel {
        padding: 28px 20px;
        border-radius: 28px;
    }

    .business-visual {
        min-height: 430px;
    }

    .business-photo {
        inset: 0 36px 0 0;
        border-radius: 26px;
    }

    .business-card {
        min-width: 175px;
        padding: 12px;
    }

    .business-card-one {
        top: 60px;
    }

    .business-card-two {
        bottom: 60px;
    }

    .areas-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .area-card {
        min-height: 270px;
    }

    .project-filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin-inline: -12px;
        padding: 4px 12px 8px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .project-filters::-webkit-scrollbar {
        display: none;
    }

    .project-filters button {
        flex: 0 0 auto;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 34px;
    }

    .project-card,
    .project-featured {
        grid-column: auto;
    }

    .project-image,
    .project-featured .project-image {
        height: 260px;
    }

    .project-featured .project-body h3 {
        font-size: 26px;
    }

    .projects-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .result-card {
        min-height: 230px;
    }

    .result-card > strong {
        margin-top: 32px;
    }

    .vision {
        min-height: 780px;
    }

    .contact-panel {
        padding: 30px 20px;
        border-radius: 28px;
    }

    .contact-links > a {
        grid-template-columns: 44px 1fr 20px;
        padding: 12px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

    .footer {
        padding-bottom: 24px;
    }

    .footer-main > p {
        font-size: 19px;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 8px;
    }

    .mobile-bottom-nav {
        position: fixed;
        z-index: 900;
        left: 10px;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        min-height: 66px;
        padding: 7px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255,255,255,.94);
        box-shadow: 0 18px 50px rgba(16,33,58,.18);
        backdrop-filter: blur(18px);
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: var(--muted);
        font-size: 8px;
        font-weight: 700;
    }

    .mobile-bottom-nav i {
        font-size: 17px;
    }

    .mobile-bottom-nav .mobile-main {
        margin: -18px 3px 0;
        border-radius: 18px;
        background: var(--blue);
        color: white;
        box-shadow: 0 12px 28px rgba(11,95,233,.26);
    }

    .mobile-bottom-nav .mobile-main i {
        font-size: 19px;
    }

    .back-top {
        right: 16px;
        bottom: calc(92px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 380px) {
    .brand-copy small {
        display: none;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-visual {
        min-height: 540px;
    }

    .hero-photo {
        inset: 82px 14px 132px;
    }

    .floating-card-quote {
        width: 150px;
        right: 8px;
        bottom: 8px;
    }

    .section-heading h2,
    .family-copy h2,
    .business-copy h2,
    .areas-heading h2,
    .projects-heading h2,
    .results-heading h2,
    .vision-copy h2,
    .contact-copy h2 {
        font-size: 36px;
    }
}
