/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Stormy Morning palette */
    --navy:      #1c2b38;   /* deep stormy dark */
    --navy-mid:  #384959;   /* stormy morning main dark */
    --orange:    #6A89A7;   /* steel blue accent */
    --orange-dk: #4d7090;   /* darker steel blue */
    --sky:       #88BDF2;   /* bright sky blue */
    --sky-light: #BDDDFC;   /* lightest sky */
    --white:     #ffffff;
    --off-white: #eef5fb;   /* blue-tinted near-white */
    --gray-100:  #dce8f2;   /* very light stormy blue */
    --gray-200:  #b8cfde;   /* light stormy blue */
    --gray-400:  #7a98b0;   /* muted blue-gray */
    --gray-700:  #3d566a;   /* blue-toned body text */
    --gray-900:  #1c2b38;   /* dark text */
    --font-body: 'Inter', sans-serif;
    --font-head: 'Playfair Display', serif;
    --radius:    8px;
    --shadow:    0 4px 24px rgba(28,43,56,0.12);
    --shadow-lg: 0 12px 48px rgba(28,43,56,0.22);
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.bg-light { background: var(--off-white); }

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--navy);
    margin-top: 12px;
    margin-bottom: 4px;
}

.section-sub {
    color: var(--gray-700);
    max-width: 640px;
    margin: 16px auto 0;
    font-size: 1.05rem;
}

.section-tag {
    display: inline-block;
    background: var(--sky-light);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid rgba(136,189,242,0.4);
}

.section-tag.light {
    background: rgba(189,221,252,0.15);
    color: var(--sky-light);
    border: 1px solid rgba(189,221,252,0.35);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--navy-mid);
    color: var(--white);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--sky);
    color: var(--navy);
    border-color: var(--sky);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(136,189,242,0.45);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--white);
}

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

/* ===== TOPBAR ===== */
.topbar {
    background: var(--navy);
    border-bottom: 1px solid rgba(136,189,242,0.1);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}
.topbar.hidden { transform: translateY(-100%); }

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    gap: 12px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-left span, .topbar-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.topbar-right a {
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.topbar-right a:hover { color: var(--sky-light); }
.topbar-left i, .topbar-right i { color: var(--sky); font-size: 0.7rem; }

.topbar-div {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
    display: inline-block;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 36px; left: 0; right: 0;
    z-index: 1000;
    background: rgba(18, 28, 38, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(136,189,242,0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    background: rgba(18, 28, 38, 0.98);
    box-shadow: 0 1px 0 rgba(136,189,242,0.12), 0 8px 40px rgba(0,0,0,0.5);
}

/* ── Container ── */
.nav-container {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 0;
}

/* ── Logo ── */
.nav-logo {
    flex-shrink: 0;
    margin-right: auto;
    text-decoration: none;
    display: flex;
    align-items: center;
    opacity: 1;
    transition: opacity 0.2s ease;
}
.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
    display: block;
    height: 35px;
    width: auto;
}

/* ── Desktop nav links ── */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
    margin: 0 24px;
}

.nav-link {
    position: relative;
    display: block;
    color: rgba(255,255,255,0.68);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    letter-spacing: 0.025em;
    white-space: nowrap;
    transition: color 0.2s ease;
    text-decoration: none;
}

/* Animated underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--sky-light);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover       { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); background: rgba(136,189,242,0.6); }
.nav-link.active      { color: var(--sky-light); font-weight: 600; }
.nav-link.active::after { transform: scaleX(1); }

/* ── Desktop right side actions ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.12);
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    background: var(--sky);
    color: var(--navy);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.nav-cta-btn:hover {
    background: var(--sky-light);
    color: var(--navy);
    box-shadow: 0 6px 24px rgba(136,189,242,0.45);
    transform: translateY(-1px);
}
.nav-cta-btn i { font-size: 0.78rem; }

/* ── Hamburger (mobile only) ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
}

.ham-line {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.3s ease,
                width     0.3s ease;
    transform-origin: center;
}
.nav-hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .ham-line:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 9998;
    visibility: hidden;
    pointer-events: none;
}
.mobile-drawer.open {
    visibility: visible;
    pointer-events: auto;
}

.drawer-scrim {
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 24, 0.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.mobile-drawer.open .drawer-scrim { opacity: 1; }

.drawer-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(360px, 88vw);
    background: #0d1b26;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -24px 0 80px rgba(0,0,0,0.6);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }

/* Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 20px 24px;
    border-bottom: 1px solid rgba(136,189,242,0.1);
    flex-shrink: 0;
}

.drawer-close {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.drawer-close:hover {
    background: rgba(255,100,100,0.15);
    color: #ff8080;
    border-color: rgba(255,100,100,0.3);
}

/* Nav section label */
.drawer-nav-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    padding: 20px 24px 8px;
}

/* Drawer links */
.drawer-nav { flex: 1; }
.drawer-links { list-style: none; }

.drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 24px;
    color: rgba(255,255,255,0.68);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
}
.drawer-link:hover {
    background: rgba(136,189,242,0.06);
    color: var(--white);
}
.drawer-link.active {
    background: rgba(136,189,242,0.1);
    color: var(--sky-light);
    border-left-color: var(--sky);
    font-weight: 600;
}

.drawer-link-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: rgba(136,189,242,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem;
    color: var(--sky);
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.drawer-link:hover .drawer-link-icon,
.drawer-link.active .drawer-link-icon { background: rgba(136,189,242,0.18); }

.drawer-link-label { flex: 1; }

.drawer-link-arrow {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.2);
    transition: color 0.2s ease, transform 0.2s ease;
}
.drawer-link:hover .drawer-link-arrow { color: rgba(136,189,242,0.6); transform: translateX(3px); }
.drawer-link.active .drawer-link-arrow { color: var(--sky-light); }

/* Footer */
.drawer-footer {
    border-top: 1px solid rgba(136,189,242,0.1);
    padding: 0 24px 32px;
    flex-shrink: 0;
}

.drawer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.48);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.drawer-contact-item:hover { color: var(--sky-light); }

.drawer-contact-icon {
    width: 30px; height: 30px;
    border-radius: 7px;
    background: rgba(136,189,242,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem;
    color: var(--sky);
    flex-shrink: 0;
}

.drawer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px;
    background: var(--sky);
    color: var(--navy);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.drawer-cta-btn:hover {
    background: var(--sky-light);
    color: var(--navy);
    box-shadow: 0 8px 28px rgba(136,189,242,0.4);
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

/* background video */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* dark gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(28,43,56,0.88) 0%,
        rgba(56,73,89,0.72) 50%,
        rgba(28,43,56,0.90) 100%
    );
}

/* subtle bottom fade to white */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 2;
    pointer-events: none;
}

/* content layer */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 840px;
    padding-top: 80px;
}

/* badge / eyebrow */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(136,189,242,0.12);
    border: 1px solid rgba(136,189,242,0.30);
    border-radius: 100px;
    padding: 6px 18px;
    color: var(--sky-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-badge i { color: var(--sky); font-size: 0.85rem; }

/* headline */
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
}
.hero-title-accent {
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.76);
    max-width: 560px;
    line-height: 1.78;
    margin-bottom: 40px;
}

/* CTA buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 34px;
    background: var(--sky);
    color: var(--navy);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    border: 2px solid var(--sky);
}
.btn-hero-primary:hover {
    background: var(--sky-light);
    border-color: var(--sky-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(136,189,242,0.45);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 30px;
    border: 2px solid rgba(255,255,255,0.45);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.8);
}

/* inline stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--sky-light);
    line-height: 1;
    margin-bottom: 3px;
}
.hero-stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.52);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero-stat-div {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

/* scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.12); }
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(136,189,242,0.10);
    position: relative;
    z-index: 1;
}
.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stats-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background var(--transition);
}
.stats-strip-item:last-child { border-right: none; }
.stats-strip-item:hover { background: rgba(136,189,242,0.06); }
.stats-strip-item i { font-size: 1.7rem; color: var(--sky); flex-shrink: 0; }
.stats-strip-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 3px;
}
.stats-strip-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.52);
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

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

.pillar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(136,189,242,0.22);
}

.pillar-num {
    font-family: var(--font-head);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition);
}
.pillar-card:hover .pillar-num { color: var(--sky-light); }

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sky);
    margin-bottom: 24px;
    transition: background var(--transition), color var(--transition);
}

.pillar-card:hover .pillar-icon {
    background: var(--sky);
    color: var(--white);
}

.pillar-title {
    font-family: var(--font-head);
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.pillar-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sky);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.pillar-body { color: var(--gray-700); line-height: 1.75; }

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--gray-100); }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(15,31,61,0.85), transparent);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 20px 14px 12px;
}

/* ===== ABOUT SPLIT ===== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.about-image {
    position: relative;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.about-split:hover .about-image img { transform: scale(1.04); }

.about-badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: var(--sky);
    color: var(--navy);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(28,43,56,0.35);
}
.about-badge i { font-size: 1.4rem; }
.about-badge-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}
.about-badge-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.about-text {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}
.about-text h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--navy);
    margin: 16px 0 18px;
    line-height: 1.3;
}
.about-lead {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.82;
    margin-bottom: 28px;
}
.about-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}
.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--gray-700);
}
.about-points li i { color: var(--sky); margin-top: 3px; flex-shrink: 0; }
.about-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.about-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--sky);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--transition);
}
.about-link:hover { gap: 12px; }

/* ===== SERVICES PREVIEW ===== */
.services-preview { background: var(--gray-100); }

.sp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 44px;
}

.sp-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 26px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.sp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(136,189,242,0.22);
}

.sp-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--sky);
    margin-bottom: 20px;
    transition: background var(--transition), color var(--transition);
}
.sp-card:hover .sp-icon { background: var(--sky); color: var(--white); }

.sp-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.sp-card p {
    color: var(--gray-700);
    font-size: 0.88rem;
    line-height: 1.72;
    flex: 1;
    margin-bottom: 18px;
}
.sp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sky);
    font-weight: 600;
    font-size: 0.84rem;
    transition: gap var(--transition);
    margin-top: auto;
}
.sp-link:hover { gap: 10px; }

.section-cta {
    text-align: center;
    margin-top: 8px;
}
.section-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section { background: var(--off-white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 44px;
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.07); }

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,43,56,0.88) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 18px 20px;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-label {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.gallery-card-overlay i { color: var(--sky-light); font-size: 1rem; }

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(160deg, rgba(28,43,56,0.88) 0%, rgba(56,73,89,0.78) 100%),
        url('https://res.cloudinary.com/dmp3pb1gt/image/upload/f_auto,q_auto,w_1600/v1781047414/IMG_4522_rq9ovj.jpg') center/cover no-repeat;
    padding-bottom: 64px;
    overflow: hidden;
}

.page-hero--projects {
    background:
        linear-gradient(160deg, rgba(28,43,56,0.88) 0%, rgba(42,64,88,0.80) 100%),
        url('https://res.cloudinary.com/dmp3pb1gt/image/upload/f_auto,q_auto,w_1600/v1781047423/IMG_4507_m7vgpj.jpg') center/cover no-repeat;
}
.page-hero--services {
    background:
        linear-gradient(160deg, rgba(28,43,56,0.88) 0%, rgba(56,73,89,0.80) 100%),
        url('https://res.cloudinary.com/dmp3pb1gt/image/upload/f_auto,q_auto,w_1600/v1781047374/IMG_4404_n74ywq.jpg') center/cover no-repeat;
}
.page-hero--team {
    background:
        linear-gradient(160deg, rgba(28,43,56,0.88) 0%, rgba(42,64,88,0.80) 100%),
        url('https://res.cloudinary.com/dmp3pb1gt/image/upload/f_auto,q_auto,w_1600/v1781047350/IMG_2236_opaqxn.jpg') center/cover no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.page-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin: 16px 0 12px;
    line-height: 1.15;
}

.page-hero-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    max-width: 560px;
}

/* ===== WHO WE ARE — VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(136,189,242,0.22);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--sky);
    margin-bottom: 20px;
    transition: background var(--transition), color var(--transition);
}

.value-card:hover .value-icon {
    background: var(--sky);
    color: var(--white);
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.value-card p { color: var(--gray-700); font-size: 0.93rem; line-height: 1.75; }

/* ===== PROJECTS — MARKETS ===== */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.market-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.market-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(136,189,242,0.22);
}

.market-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--sky);
    margin: 0 auto 16px;
    transition: background var(--transition), color var(--transition);
}

.market-card:hover .market-icon {
    background: var(--sky);
    color: var(--white);
}

.market-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.market-card p { color: var(--gray-700); font-size: 0.88rem; line-height: 1.65; }

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(136,189,242,0.22);
}


.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--sky);
    margin-bottom: 20px;
    transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-icon {
    background: var(--sky);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p { color: var(--gray-700); font-size: 0.92rem; line-height: 1.7; }


/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #2a4058 100%);
    border-top: 3px solid var(--sky);
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-inner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

.cta-inner .btn-primary {
    background: var(--sky-light);
    color: var(--navy);
    border-color: var(--sky-light);
}

.cta-inner .btn-primary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    box-shadow: 0 8px 32px rgba(189,221,252,0.3);
}

/* ===== TEAM ===== */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.philosophy-block .section-tag { margin-bottom: 16px; }

.philosophy-block h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.philosophy-block p {
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.team-grid--centered {
    max-width: 720px;
    margin: 0 auto;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.team-card:hover { transform: translateY(-4px); }

.team-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.04em;
}

.team-avatar--alt {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
}

.team-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.82rem;
    color: var(--sky);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.team-contact {
    font-size: 0.88rem;
    color: var(--gray-700);
}

.team-contact a:hover { color: var(--sky); }

/* ===== PAGE HERO — WHO WE ARE ===== */
.page-hero--whoweare {
    background:
        linear-gradient(160deg, rgba(28,43,56,0.90) 0%, rgba(56,73,89,0.80) 100%),
        url('https://res.cloudinary.com/dmp3pb1gt/image/upload/f_auto,q_auto,w_1600/v1781047342/IMG_2243_gsownz.jpg') center/cover no-repeat;
}

/* ===== UTILITY ===== */
.bg-light { background: var(--gray-100); }

/* ===== BUTTONS — EXTRA VARIANTS ===== */
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    color: var(--white);
}

/* CTA dual-action row */
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Section header on dark bg */
.section-header--light h2 { color: var(--white); }
.section-header--light .section-sub { color: rgba(255,255,255,0.7); }

/* ===== STORY SPLIT (WHO WE ARE) ===== */
.story-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.story-image {
    position: relative;
    overflow: hidden;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.story-split:hover .story-image img { transform: scale(1.04); }

.story-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--sky);
    color: var(--navy);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(28,43,56,0.35);
}
.story-badge i { font-size: 1.3rem; }
.story-badge-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}
.story-badge-label {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.story-text {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--navy);
}
.story-text .section-tag { background: rgba(189,221,252,0.12); color: var(--sky-light); border-color: rgba(189,221,252,0.3); }
.story-text h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--white);
    margin: 16px 0 18px;
    line-height: 1.3;
}
.story-lead {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.82;
    margin-bottom: 16px;
}
.story-body {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.story-pillars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.story-pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sky-light);
    font-weight: 600;
    font-size: 0.9rem;
}
.story-pillar i { color: var(--sky); font-size: 1rem; }

/* ===== MILESTONES (WHO WE ARE) ===== */
.milestones-section { background: var(--gray-100); }

.milestones-list {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 130px;
}
.milestones-list::before {
    content: '';
    position: absolute;
    left: 108px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--sky) 0%, rgba(136,189,242,0.15) 100%);
}

.milestone-item {
    position: relative;
    padding: 0 0 40px 36px;
    display: flex;
    flex-direction: column;
}
.milestone-item:last-child { padding-bottom: 0; }

.milestone-year {
    position: absolute;
    left: -130px;
    top: 2px;
    width: 94px;
    text-align: right;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sky);
    line-height: 1.2;
}

.milestone-dot {
    position: absolute;
    left: -10px;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--sky);
    border: 3px solid var(--gray-100);
    box-shadow: 0 0 0 3px rgba(136,189,242,0.35);
    z-index: 1;
}

.milestone-content {}
.milestone-event {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.milestone-desc {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===== MARKET NUM (PROJECTS) ===== */
.market-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-200);
    letter-spacing: 0.05em;
}

/* ===== GALLERY FEATURED LAYOUT (PROJECTS) ===== */
.gallery-grid--featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px auto;
    gap: 14px;
}

/* All cards fill their grid cell — no aspect-ratio conflict */
.gallery-grid--featured .gallery-card {
    aspect-ratio: unset;
    height: 100%;
}

/* First photo: big feature, spans 2 cols × 2 rows */
.gallery-grid--featured .gallery-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row:    1 / 3;
}

/* Items 2 & 3: tall stack in the third column */
.gallery-grid--featured .gallery-card:nth-child(2),
.gallery-grid--featured .gallery-card:nth-child(3) {
    grid-column: 3;
}

/* Items 4–6: equal bottom row */
.gallery-grid--featured .gallery-card:nth-child(4),
.gallery-grid--featured .gallery-card:nth-child(5),
.gallery-grid--featured .gallery-card:nth-child(6) {
    grid-row: 3;
    aspect-ratio: 4/3;
    height: auto;
}

/* ===== PROCESS STEPS (SERVICES) ===== */
.process-section {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #2a4058 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 12px;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(to right, rgba(136,189,242,0.4) 0%, rgba(136,189,242,0.15) 100%);
    pointer-events: none;
}

.process-step {
    text-align: center;
    padding: 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(136,189,242,0.12);
    border: 2px solid rgba(136,189,242,0.35);
    color: var(--sky-light);
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: background var(--transition), border-color var(--transition);
}
.process-step:hover .process-step-num {
    background: var(--sky);
    border-color: var(--sky);
    color: var(--navy);
}

.process-step-icon {
    font-size: 1.5rem;
    color: var(--sky);
    margin-bottom: 14px;
}

.process-step-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.process-step-body {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.72;
}

/* ===== PROFILE CARDS (TEAM) ===== */
/* ===== CORE TEAM SECTION ===== */
.ct-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

/* --- Director spotlight --- */
.ct-director {
    display: flex;
    justify-content: center;
    margin-bottom: 72px;
}
.ct-director-card {
    background: var(--white);
    border-radius: 24px;
    padding: 52px 44px 44px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ct-director-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgba(28,43,56,0.18);
}
.ct-director-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow:
        0 0 0 5px var(--white),
        0 0 0 9px var(--sky-light),
        0 16px 48px rgba(28,43,56,0.35);
}
.ct-director-dept {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--orange-dk);
    background: rgba(106,137,167,0.1);
    border: 1px solid rgba(106,137,167,0.25);
    border-radius: 100px;
    padding: 3px 14px;
    margin-bottom: 12px;
}
.ct-director-name {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
    line-height: 1.2;
}
.ct-director-role {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 0;
}
.ct-director-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}
.ct-director-contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray-700);
    transition: color 0.2s ease;
    word-break: break-all;
}
.ct-director-contacts a:hover { color: var(--orange-dk); }
.ct-director-contacts i { color: var(--orange); flex-shrink: 0; }

/* --- Tier label divider --- */
.ct-tier { margin-bottom: 56px; }
.ct-tier-label {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}
.ct-tier-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 1px;
    background: var(--gray-100);
    transform: translateY(-50%);
}
.ct-tier-label-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    background: var(--off-white);
    padding: 0 28px;
}
.ct-tier-label h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    letter-spacing: 0.01em;
}

/* --- Member grid --- */
.ct-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ct-grid--duo {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Member card --- */
.ct-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 18px;
    padding: 36px 22px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.ct-card:hover {
    border-color: var(--sky-light);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(28,43,56,0.14);
}

/* Card avatar */
.ct-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(28,43,56,0.25);
    flex-shrink: 0;
}
.ct-avatar--sky {
    background: linear-gradient(135deg, var(--sky) 0%, var(--navy-mid) 100%);
    border-color: rgba(136,189,242,0.45);
}

/* Card text */
.ct-dept {
    display: inline-block;
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--orange-dk);
    background: rgba(106,137,167,0.1);
    border: 1px solid rgba(106,137,167,0.2);
    border-radius: 100px;
    padding: 3px 12px;
    margin-bottom: 10px;
}
.ct-name {
    font-family: var(--font-head);
    font-size: 1.0rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 5px;
    line-height: 1.3;
}
.ct-role {
    font-size: 0.77rem;
    color: var(--gray-700);
    margin: 0;
    letter-spacing: 0.02em;
}
.ct-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    margin-top: 16px;
}
.ct-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.77rem;
    color: var(--gray-700);
    transition: color 0.2s ease;
    word-break: break-all;
}
.ct-contact a:hover { color: var(--orange-dk); }
.ct-contact i { color: var(--sky); flex-shrink: 0; font-size: 0.8rem; }

@media (prefers-reduced-motion: reduce) {
    .ct-director-card,
    .ct-card { transition: none; }
    .ct-director-card:hover,
    .ct-card:hover { transform: none; }
}

/* ===== CONTACT MODAL ===== */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    pointer-events: none;
}
.contact-modal.open {
    visibility: visible;
    pointer-events: auto;
}

.cm-scrim {
    position: absolute;
    inset: 0;
    background: rgba(4,12,22,0.82);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.contact-modal.open .cm-scrim { opacity: 1; }

/* ── Two-column panel ── */
.cm-panel {
    position: relative;
    z-index: 1;
    display: flex;
    width: 860px;
    max-width: 95vw;
    max-height: 92vh;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(4,12,22,0.65);
    transform: translateY(28px) scale(0.98);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.3s ease;
}
.contact-modal.open .cm-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* ── Left info strip ── */
.cm-info {
    width: 280px;
    flex-shrink: 0;
    background: var(--navy);
    padding: 44px 32px 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.cm-info-logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.1em;
}
.cm-info-tagline {
    font-size: 0.68rem;
    color: var(--sky);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 3px;
    margin-bottom: 36px;
}
.cm-info-headline {
    font-family: var(--font-head);
    font-size: 1.55rem;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 14px;
}
.cm-info-body {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 0;
    flex: 1;
}
.cm-info-contacts {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.cm-info-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}
.cm-info-contacts li i {
    color: var(--sky);
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}
.cm-info-contacts a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s;
}
.cm-info-contacts a:hover { color: var(--sky-light); }

/* ── Right form body ── */
.cm-body {
    flex: 1;
    background: #fff;
    padding: 40px 36px 36px;
    overflow-y: auto;
    overscroll-behavior: contain;
    position: relative;
}

.cm-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 0;
    background: #f0f2f5;
    cursor: pointer;
    color: #6b7280;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}
.cm-close:hover { background: #e8eaee; color: var(--navy); }

/* ── Form ── */
.cm-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cm-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cm-field--full { grid-column: 1 / -1; }

.cm-field label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.req { color: var(--sky); }

.cm-field input,
.cm-field select,
.cm-field textarea {
    width: 100%;
    padding: 9px 0;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #e5e7eb;
    border-radius: 0;
    font-size: 0.92rem;
    font-family: var(--font-body);
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.cm-field input::placeholder,
.cm-field textarea::placeholder { color: #d1d5db; }

.cm-field input:focus,
.cm-field select:focus,
.cm-field textarea:focus {
    border-bottom-color: var(--sky);
}

.cm-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 20px;
    cursor: pointer;
    color: var(--navy);
}
.cm-field select option[value=""] { color: #d1d5db; }

.cm-field textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}

.cm-field input.invalid,
.cm-field select.invalid,
.cm-field textarea.invalid {
    border-bottom-color: #ef4444;
}

/* ── Form footer ── */
.cm-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.cm-privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.73rem;
    color: #d1d5db;
}
.cm-privacy i { color: var(--sky); font-size: 0.68rem; }

.cm-submit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 26px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    font-family: var(--font-body);
    white-space: nowrap;
}
.cm-submit:hover    { background: var(--navy-mid); transform: translateY(-1px); }
.cm-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ── Error banner ── */
.cm-error {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 14px;
    background: #fef2f2;
    border-left: 3px solid #ef4444;
    font-size: 0.83rem;
    color: #dc2626;
    line-height: 1.5;
}
.cm-error i { flex-shrink: 0; margin-top: 2px; }

/* ── Success state (hidden by default — JS shows via style.display) ── */
.cm-success {
    text-align: center;
    padding: 32px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cm-success-icon {
    font-size: 2.8rem;
    color: #22c55e;
    margin-bottom: 6px;
    animation: successPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes successPop {
    from { transform: scale(0.3); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.cm-success h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--navy);
    margin: 0;
}
.cm-success > p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.65;
    max-width: 320px;
    margin: 0;
}

.cm-success-contacts {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 6px 0 12px;
}
.cm-success-contacts span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.8rem;
    color: #6b7280;
}
.cm-success-contacts i { color: var(--sky); }

/* Mobile: stack vertically, slide up from bottom */
@media (max-width: 640px) {
    .contact-modal { align-items: flex-end; padding: 0; }
    .cm-panel {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        max-height: 95vh;
        transform: translateY(100%);
    }
    .contact-modal.open .cm-panel { transform: translateY(0); }
    .cm-info {
        flex-direction: row;
        align-items: center;
        width: 100%;
        padding: 18px 20px;
        gap: 14px;
    }
    .cm-info-headline,
    .cm-info-body,
    .cm-info-contacts { display: none; }
    .cm-info-tagline { margin-bottom: 0; }
    .cm-body { padding: 24px 20px 28px; }
    .cm-row  { grid-template-columns: 1fr; gap: 16px; }
    .cm-form-footer { flex-direction: column; align-items: stretch; }
    .cm-submit { justify-content: center; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.68);
}

/* --- CTA strip --- */
.footer-top {
    background: linear-gradient(135deg, var(--navy-mid) 0%, #2a4058 100%);
    border-top: 3px solid var(--sky);
    padding: 40px 0;
}

.footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-cta-text h3 {
    font-family: var(--font-head);
    font-size: 1.55rem;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-cta-text p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* --- Main body --- */
.footer-main { padding: 64px 0 48px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

/* --- Brand column --- */
.footer-logo-img {
    display: block;
    height: 40px;
    width: auto;
    margin-bottom: 2px;
}

.footer-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(136,189,242,0.22);
    background: rgba(136,189,242,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--sky);
    border-color: var(--sky);
    color: var(--navy);
    transform: translateY(-3px);
}

/* --- Columns --- */
.footer-heading {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(136,189,242,0.14);
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255,255,255,0.58);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition), gap var(--transition);
}

.footer-nav a i {
    font-size: 0.58rem;
    color: var(--sky);
    flex-shrink: 0;
}

.footer-nav a:hover {
    color: var(--sky-light);
    gap: 12px;
}

/* --- Contact list --- */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.55;
}

.footer-contact-list li i {
    color: var(--sky);
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.58);
    transition: color var(--transition);
}

.footer-contact-list a:hover { color: var(--sky-light); }

/* --- Bottom bar --- */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.18);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom-inner p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.32);
}

.footer-tagline-bottom {
    font-style: italic;
    color: rgba(255,255,255,0.22) !important;
}

/* ===== PAGE PROGRESS BAR ===== */
#progressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    z-index: 999999;
    background: linear-gradient(90deg, var(--sky) 0%, var(--sky-light) 60%, var(--sky) 100%);
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 8px rgba(136,189,242,0.55);
}

#progressSpinner {
    position: fixed;
    top: 8px;
    right: 16px;
    z-index: 999999;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(136,189,242,0.2);
    border-top-color: var(--sky);
    border-right-color: var(--sky-light);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    animation: pb-spin 0.7s linear infinite paused;
}

#progressSpinner.pb-active {
    opacity: 1;
    animation-play-state: running;
}

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

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pillars-grid      { grid-template-columns: repeat(2, 1fr); }
    .markets-grid      { grid-template-columns: repeat(3, 1fr); }
    .services-grid     { grid-template-columns: repeat(2, 1fr); }
    .sp-grid           { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
    .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand      { grid-column: 1 / -1; }
    .footer-top-inner  { flex-direction: column; align-items: flex-start; gap: 20px; }
    .project-gallery   { grid-template-columns: repeat(2, 1fr); }
    .philosophy-grid   { gap: 40px; }
    .about-text        { padding: 56px 40px; }
    .story-text        { padding: 56px 40px; }
    .ct-grid           { grid-template-columns: repeat(2, 1fr); }
    .ct-grid--duo      { max-width: 100%; }
    .process-steps     { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-steps::before { display: none; }
    .gallery-grid--featured {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px auto;
    }
    .gallery-grid--featured .gallery-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
    .gallery-grid--featured .gallery-card:nth-child(2) { grid-column: 1; grid-row: 2; }
    .gallery-grid--featured .gallery-card:nth-child(3) { grid-column: 2; grid-row: 2; }
    .gallery-grid--featured .gallery-card:nth-child(4),
    .gallery-grid--featured .gallery-card:nth-child(5),
    .gallery-grid--featured .gallery-card:nth-child(6) { grid-row: 3; grid-column: unset; }
}

@media (max-width: 768px) {
    .section-pad { padding: 56px 0; }
    .container   { padding: 0 20px; }

    /* ---- Navbar ---- */
    .navbar     { position: fixed; top: 0; }
    .topbar     { display: none; }
    .nav-links  { display: none; }
    .nav-actions { display: none; }
    .nav-hamburger { display: flex; }

    /* ---- Hero ---- */
    .hero { min-height: 100svh; }
    .hero-content  { padding-top: 72px; }
    .hero-subtitle { max-width: 100%; font-size: 1rem; }
    .hero-cta      { flex-direction: column; gap: 12px; }
    .hero-cta .btn { text-align: center; width: 100%; }
    .hero-stats    { flex-wrap: wrap; gap: 12px 0; }
    .hero-stat-div { display: none; }
    .hero-scroll   { display: none; }

    /* ---- Page hero ---- */
    .page-hero         { height: 280px; padding-bottom: 36px; }
    .page-hero-content p { font-size: 0.95rem; }

    /* ---- About split ---- */
    .about-split       { grid-template-columns: 1fr; }
    .about-image       { min-height: 280px; }
    .about-text        { padding: 40px 28px; }
    .about-badge       { bottom: 16px; right: 16px; }

    /* ---- Stats strip ---- */
    .stats-strip-grid  { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* ---- Grids ---- */
    .pillars-grid      { grid-template-columns: 1fr; }
    .values-grid       { grid-template-columns: 1fr; }
    .markets-grid      { grid-template-columns: 1fr 1fr; }
    .services-grid     { grid-template-columns: 1fr; }
    .sp-grid           { grid-template-columns: 1fr; }
    .gallery-grid      { grid-template-columns: 1fr 1fr; gap: 10px; }
    .philosophy-grid   { grid-template-columns: 1fr; gap: 32px; }
    .team-grid         { grid-template-columns: 1fr; }
    .team-grid--centered { max-width: 100%; }
    .project-gallery   { grid-template-columns: 1fr 1fr; gap: 10px; }

    /* ---- Story ---- */
    .story-split       { grid-template-columns: 1fr; }
    .story-image       { min-height: 280px; }
    .story-text        { padding: 40px 28px; }
    .story-badge       { bottom: 16px; left: 16px; }

    /* ---- Milestones ---- */
    .milestones-list   { padding-left: 80px; }
    .milestones-list::before { left: 58px; }
    .milestone-year    { left: -80px; width: 56px; font-size: 0.88rem; }

    /* ---- Process ---- */
    .process-steps     { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    .process-steps::before { display: none; }

    /* ---- Core Team ---- */
    .ct-grid           { grid-template-columns: repeat(2, 1fr); }
    .ct-grid--duo      { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .ct-director-card  { padding: 44px 32px 40px; }

    /* ---- Cards ---- */
    .pillar-card  { padding: 28px 22px; }
    .service-card { padding: 28px 22px; }
    .value-card   { padding: 28px 22px; }

    /* ---- Footer ---- */
    .footer-grid         { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand        { grid-column: 1 / -1; }
    .footer-main         { padding: 40px 0 28px; }
    .footer-top          { padding: 28px 0; }
    .footer-top-inner    { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-cta-btn      { width: 100%; justify-content: center; }
    .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 4px; }
}

@media (max-width: 480px) {
    .section-pad { padding: 44px 0; }
    .container   { padding: 0 16px; }

    .nav-container { height: 58px; }
    .nav-logo-img  { height: 30px; }

    /* Hero */
    .hero-title        { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-cta .btn     { font-size: 0.9rem; padding: 13px 24px; max-width: 100%; }
    .hero-stat-num     { font-size: 1.3rem; }

    /* Page hero */
    .page-hero { height: 240px; padding-bottom: 28px; }

    /* Stats strip — single column on small phones */
    .stats-strip-grid  { grid-template-columns: 1fr 1fr; gap: 14px; }

    /* About */
    .about-image       { min-height: 220px; }
    .about-text        { padding: 32px 20px; }
    .about-actions     { flex-direction: column; align-items: flex-start; gap: 16px; }

    /* Services preview */
    .sp-card           { padding: 22px 18px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid--featured {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px auto;
    }
    .gallery-grid--featured .gallery-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; aspect-ratio: unset; height: 100%; }
    .gallery-grid--featured .gallery-card:nth-child(2),
    .gallery-grid--featured .gallery-card:nth-child(3) { grid-column: unset; grid-row: 2; aspect-ratio: unset; height: 100%; }
    .gallery-grid--featured .gallery-card:nth-child(4),
    .gallery-grid--featured .gallery-card:nth-child(5),
    .gallery-grid--featured .gallery-card:nth-child(6) { grid-row: 3; }

    /* Other grids */
    .markets-grid      { grid-template-columns: 1fr; }
    .project-gallery   { grid-template-columns: 1fr; }

    /* Story */
    .story-text        { padding: 32px 20px; }
    .story-pillars     { gap: 10px; }

    /* Milestones */
    .milestones-list   { padding-left: 60px; }
    .milestones-list::before { left: 38px; }
    .milestone-year    { left: -60px; width: 42px; font-size: 0.78rem; }

    /* Process */
    .process-steps     { grid-template-columns: 1fr; gap: 32px; }

    /* Core Team */
    .ct-grid, .ct-grid--duo { grid-template-columns: 1fr; }
    .ct-director-card  { padding: 40px 24px 36px; max-width: 100%; }
    .ct-director-avatar { width: 100px; height: 100px; font-size: 1.5rem; }

    /* CTA actions */
    .cta-actions       { flex-direction: column; align-items: stretch; }
    .btn-outline-light { text-align: center; justify-content: center; }

    /* Footer */
    .footer-grid       { grid-template-columns: 1fr; gap: 20px; }
    .footer-logo-img   { height: 34px; }
    .footer-social a   { width: 34px; height: 34px; }
    .footer-top        { padding: 24px 0; }
    .footer-cta-text h3 { font-size: 1.2rem; }
}
