/* ============================================
   HASEEB LAW CHAMBERS — Premium Website
   Design: Deep blacks, refined whites, elegant typography
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --black: #000000;
    --rich-black: #0a0a0a;
    --charcoal: #141414;
    --dark: #1a1a1a;
    --dark-2: #222222;
    --dark-3: #2a2a2a;
    --gray-dark: #333333;
    --gray: #4a4a4a;
    --gray-light: #777777;
    --gray-lighter: #999999;
    --border: #e0e0e0;
    --border-light: #eeeeee;
    --off-white: #f7f7f5;
    --cream: #faf9f6;
    --white: #ffffff;
    --gold: #b8964e;
    --gold-light: #d4b06a;

    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

    --container: 1280px;
    --section-gap: 9rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.75;
    color: var(--gray-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::selection {
    background: var(--charcoal);
    color: var(--white);
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--rich-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__inner {
    text-align: center;
}

.preloader__logo {
    width: 60px;
    height: auto;
    margin: 0 auto 2rem;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader__bar {
    width: 200px;
    height: 2px;
    background: var(--dark-3);
    border-radius: 2px;
    overflow: hidden;
}

.preloader__progress {
    height: 100%;
    width: 0;
    background: var(--white);
    animation: preloaderFill 1.8s var(--ease-out) forwards;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* ========== CUSTOM CURSOR ========== */
.cursor, .cursor-follower {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .cursor {
        display: block;
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--rich-black);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        transition: transform 0.15s var(--ease);
        mix-blend-mode: difference;
    }

    .cursor-follower {
        display: block;
        position: fixed;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(10, 10, 10, 0.3);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99997;
        transition: transform 0.4s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
        transform: translate(-50%, -50%);
    }

    .cursor.hover {
        transform: scale(3);
        background: var(--white);
    }

    .cursor-follower.hover {
        width: 60px;
        height: 60px;
        border-color: rgba(10, 10, 10, 0.1);
    }
}

/* ========== UTILITIES ========== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Intro — used across all sections */
.section-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4.5rem;
    align-items: start;
}

.section-tag-group {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 0.5rem;
}

.section-tag-group--light .section-icon {
    border-color: rgba(255,255,255,0.12);
}

.section-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: all 0.5s var(--ease);
}

.section-icon svg {
    width: 17px;
    height: 17px;
    color: var(--rich-black);
}

.section-icon--light {
    border-color: rgba(255,255,255,0.12);
}

.section-icon--light svg {
    color: var(--gold);
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    display: inline-block;
}

.section-tag--light {
    color: rgba(255,255,255,0.4);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--rich-black);
    letter-spacing: -0.01em;
}

.section-heading em {
    font-style: italic;
    color: var(--gray-dark);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.4s var(--ease);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn--primary {
    background: var(--rich-black);
    color: var(--white);
    border-color: var(--rich-black);
}

.btn--primary:hover {
    background: var(--dark-3);
}

.btn--dark {
    background: var(--rich-black);
    color: var(--white);
    border-color: var(--rich-black);
}

.btn--dark:hover {
    background: transparent;
    color: var(--rich-black);
}

.btn--white {
    background: var(--white);
    color: var(--rich-black);
    border-color: var(--white);
}

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

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

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

.btn--submit {
    width: 100%;
    background: var(--rich-black);
    color: var(--white);
    border-color: var(--rich-black);
    padding: 1.125rem 2rem;
    font-size: 0.825rem;
}

.btn--submit:hover {
    background: var(--dark-3);
}

.btn--sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.725rem;
}

.btn--lg {
    padding: 1.125rem 2.75rem;
    font-size: 0.825rem;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s var(--ease);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all 0.5s var(--ease);
    opacity: 0;
}

.header--scrolled::before {
    opacity: 1;
    border-bottom-color: rgba(0,0,0,0.06);
}

.header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.5rem;
    position: relative;
    z-index: 1;
    transition: height 0.5s var(--ease);
}

.header--scrolled .header__inner {
    height: 4.5rem;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    z-index: 1001;
}

.header__logo-icon {
    height: 38px;
    width: auto;
    transition: all 0.4s var(--ease);
}

.header--scrolled .header__logo-icon {
    height: 32px;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.header__logo-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--rich-black);
    letter-spacing: 0.02em;
}

.header__logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-light);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header__link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.03em;
    position: relative;
    padding: 0.25rem 0;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rich-black);
    transition: width 0.4s var(--ease-out);
}

.header__link:hover {
    color: var(--rich-black);
}

.header__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
}

.header__phone svg {
    width: 14px;
    height: 14px;
}

.header__phone:hover {
    color: var(--rich-black);
}

.header__menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 14px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: var(--rich-black);
    transition: all 0.4s var(--ease);
    left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; width: 60%; }

.header__menu-toggle.active .hamburger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.header__menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.header__menu-toggle.active .hamburger span:nth-child(3) {
    bottom: 50%;
    width: 100%;
    transform: translateY(50%) rotate(-45deg);
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
}

.mobile-nav.active {
    pointer-events: all;
}

.mobile-nav__bg {
    position: absolute;
    inset: 0;
    background: var(--rich-black);
    opacity: 0;
    transition: opacity 0.6s var(--ease);
}

.mobile-nav.active .mobile-nav__bg {
    opacity: 1;
}

.mobile-nav__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2.5rem 3rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s var(--ease-out) 0.2s;
}

.mobile-nav.active .mobile-nav__content {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav__link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out);
}

.mobile-nav.active .mobile-nav__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav__link:nth-child(1) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav__link:nth-child(2) { transition-delay: 0.35s; }
.mobile-nav.active .mobile-nav__link:nth-child(3) { transition-delay: 0.4s; }
.mobile-nav.active .mobile-nav__link:nth-child(4) { transition-delay: 0.45s; }
.mobile-nav.active .mobile-nav__link:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav__link:hover {
    color: rgba(255,255,255,0.6);
}

.mobile-nav__num {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
}

.mobile-nav__footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.mobile-nav__footer a:hover {
    color: var(--white);
}

.mobile-nav__socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--rich-black);
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.5;
    transform: scale(1.05);
    transition: transform 15s linear;
}

.hero.loaded .hero__bg-image {
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.6) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

.hero__deco-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.06);
    z-index: 1;
}

.hero__deco-line--left { left: 8%; }
.hero__deco-line--right { right: 8%; }

.hero__content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 8rem 2.5rem 4rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    padding: 0.5rem 0;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero__center {
    padding: 3rem 0;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7.5vw, 7rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero__title-line {
    display: block;
    overflow: hidden;
}

.hero__title-word {
    display: inline-block;
}

.hero__title-word--italic {
    font-style: italic;
    color: rgba(255,255,255,0.7);
}

.hero__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
    padding-bottom: 1rem;
}

.hero__bottom-left {
    max-width: 480px;
}

.hero__desc {
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
}

.hero__cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__bottom-right {
    flex-shrink: 0;
}

.hero__stats {
    display: flex;
    gap: 3rem;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.hero__stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 0.5rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero__scroll-text {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.hero__scroll-dot {
    position: absolute;
    top: -6px;
    left: -2.5px;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDot 2.5s var(--ease-in-out) infinite;
}

@keyframes scrollDot {
    0% { top: -6px; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 50px; opacity: 0; }
}

/* ========== MARQUEE STRIP ========== */
.marquee-strip {
    background: var(--rich-black);
    padding: 1.25rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-strip__track {
    display: flex;
    animation: marquee 40s linear infinite;
}

.marquee-strip__content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    padding-right: 2.5rem;
}

.marquee-strip__content span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
}

.marquee-strip__dot {
    width: 4px !important;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== ABOUT ========== */
.about {
    padding: var(--section-gap) 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: start;
}

.about__col-image {
    position: relative;
}

.about__image-main {
    position: relative;
}

.about__image-frame {
    position: relative;
    overflow: hidden;
}

.about__image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
    pointer-events: none;
}

.about__image-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    transition: transform 1.2s var(--ease);
    filter: grayscale(30%) contrast(1.05);
}

.about__image-main:hover .about__image-frame img {
    transform: scale(1.04);
}

.about__image-label {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    background: var(--rich-black);
    padding: 1rem 1.5rem;
}

.about__image-label span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.about__image-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 120px;
    height: 120px;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about__logo-badge {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about__name-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.about__name {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--rich-black);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.about__title {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 400;
}

.about__text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-dark);
    margin-bottom: 1.25rem;
}

.about__credentials {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-light);
}

.about__credential {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.about__credential-icon {
    width: 44px;
    height: 44px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__credential-icon svg {
    width: 18px;
    height: 18px;
    color: var(--rich-black);
}

.about__credential strong {
    display: block;
    font-size: 0.95rem;
    color: var(--rich-black);
    font-weight: 600;
}

.about__credential span {
    font-size: 0.85rem;
    color: var(--gray);
}

.about__cta {
    margin-top: 2.5rem;
}

/* ========== STATS ========== */
.stats-section {
    position: relative;
    padding: 5rem 0;
    background: var(--rich-black);
    overflow: hidden;
}

.stats-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(184,150,78,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.stats-section__header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stats-section__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
}

.stats-section__grid {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0;
}

.stat-block {
    flex: 1;
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
}

.stat-block + .stat-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.stat-block__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.stat-block__plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 300;
}

.stat-block__divider {
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 1rem auto;
}

.stat-block__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

/* ========== SERVICES ========== */
.services {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.service-card {
    padding: 2.75rem 2.25rem;
    border: 1px solid var(--border);
    margin: -0.5px;
    position: relative;
    background: transparent;
    transition: all 0.5s var(--ease);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--rich-black);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    z-index: 2;
    border-color: transparent;
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-card__num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gray-lighter);
    transition: color 0.5s var(--ease);
}

.service-card:hover .service-card__num {
    color: rgba(255,255,255,0.3);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--ease);
}

.service-card__icon svg {
    width: 22px;
    height: 22px;
    color: var(--rich-black);
    transition: color 0.5s var(--ease);
}

.service-card:hover .service-card__icon {
    background: rgba(255,255,255,0.1);
}

.service-card:hover .service-card__icon svg {
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rich-black);
    margin-bottom: 0.75rem;
    transition: color 0.5s var(--ease);
}

.service-card:hover .service-card__title {
    color: var(--white);
}

.service-card__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-dark);
    transition: color 0.5s var(--ease);
}

.service-card:hover .service-card__desc {
    color: rgba(255,255,255,0.7);
}

.service-card__line {
    width: 30px;
    height: 1px;
    background: var(--border);
    margin-top: 2rem;
    transition: all 0.5s var(--ease);
}

.service-card:hover .service-card__line {
    width: 50px;
    background: var(--gold);
}

/* ========== WHY US ========== */
.why-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.why-us__image-col {
    position: relative;
    overflow: hidden;
}

.why-us__image-col--pattern {
    background: var(--charcoal);
}

.why-us__pattern-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(184,150,78,0.06) 0%, transparent 50%),
        linear-gradient(315deg, rgba(255,255,255,0.02) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(255,255,255,0.02) 60px,
            rgba(255,255,255,0.02) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(255,255,255,0.02) 60px,
            rgba(255,255,255,0.02) 61px
        );
}

.why-us__pattern-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 2;
}

.why-us__pattern-icon svg {
    width: 56px;
    height: 56px;
    color: rgba(255,255,255,0.08);
}

.why-us__logo-watermark {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 2;
    opacity: 0.08;
}

.why-us__logo-watermark img {
    width: 100px;
    height: auto;
}

.why-us__image-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.why-us__experience-badge {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    background: var(--white);
    padding: 1.75rem 2rem;
    text-align: center;
    z-index: 2;
}

.why-us__badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--rich-black);
    line-height: 1;
}

.why-us__badge-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-top: 0.25rem;
    line-height: 1.4;
}

.why-us__content-col {
    background: var(--rich-black);
    display: flex;
    align-items: center;
    padding: 5rem;
}

.why-us__inner {
    max-width: 560px;
}

.why-us__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin: 1.25rem 0 1.5rem;
    letter-spacing: -0.01em;
}

.why-us__heading em {
    font-style: italic;
    color: var(--gold-light);
}

.why-us__text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
}

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-us__feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.why-us__feature:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-us__feature-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    flex-shrink: 0;
    padding-top: 0.15rem;
}

.why-us__feature-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.why-us__feature-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
}

/* ========== JURISDICTIONS ========== */
.jurisdictions {
    padding: var(--section-gap) 0;
}

.jurisdictions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.jurisdiction-card {
    position: relative;
    text-align: center;
    padding: 3rem 1.5rem;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.jurisdiction-card:hover {
    border-color: var(--rich-black);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.jurisdiction-card__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rich-black), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.jurisdiction-card:hover .jurisdiction-card__glow {
    opacity: 1;
}

.jurisdiction-card__icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.5s var(--ease);
}

.jurisdiction-card:hover .jurisdiction-card__icon-wrap {
    background: var(--rich-black);
}

.jurisdiction-card__icon-wrap svg {
    width: 22px;
    height: 22px;
    color: var(--rich-black);
    transition: color 0.5s var(--ease);
}

.jurisdiction-card:hover .jurisdiction-card__icon-wrap svg {
    color: var(--white);
}

.jurisdiction-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rich-black);
    margin-bottom: 0.25rem;
}

.jurisdiction-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Countries tags */
.countries {
    text-align: center;
}

.countries__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1.25rem;
}

.countries__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

.testimonials__wrapper {
    position: relative;
}

.testimonials__carousel {
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    transition: transform 0.7s var(--ease-out);
    gap: 2rem;
}

.testimonial-card {
    flex: 0 0 calc(50% - 1rem);
    background: var(--white);
    padding: 3.5rem;
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.5s var(--ease);
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: transparent;
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: var(--border);
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
}

.testimonial-card__text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.85;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border-light);
}

.testimonial-card__avatar {
    width: 54px;
    height: 54px;
    background: var(--rich-black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-card__info {
    flex: 1;
}

.testimonial-card__info strong {
    display: block;
    font-size: 1.05rem;
    color: var(--rich-black);
}

.testimonial-card__info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
}

.testimonial-card__stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    color: var(--gold);
}

.testimonials__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonials__btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.4s var(--ease);
}

.testimonials__btn svg {
    width: 18px;
    height: 18px;
    color: var(--rich-black);
}

.testimonials__btn:hover {
    background: var(--rich-black);
    border-color: var(--rich-black);
}

.testimonials__btn:hover svg {
    color: var(--white);
}

.testimonials__counter {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gray-light);
    min-width: 60px;
    text-align: center;
}

.testimonials__counter span:first-child {
    color: var(--rich-black);
    font-weight: 600;
}

.testimonials__progress {
    flex: 1;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.testimonials__progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--rich-black);
    width: 20%;
    transition: width 0.5s var(--ease);
}

/* ========== TEAM ========== */
.team {
    padding: var(--section-gap) 0;
}

.team__showcase {
    display: flex;
    justify-content: center;
}

.team__card {
    max-width: 420px;
    width: 100%;
}

.team__card-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team__card-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(30%);
    transition: all 0.8s var(--ease);
}

.team__card-image:hover img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.team__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 40%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.team__card-image:hover .team__card-overlay {
    opacity: 1;
}

.team__card-socials {
    display: flex;
    gap: 0.5rem;
}

.team__card-socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    transition: all 0.4s var(--ease);
}

.team__card-socials a svg {
    width: 16px;
    height: 16px;
}

.team__card-socials a:hover {
    background: var(--white);
    color: var(--rich-black);
}

.team__card-info {
    padding: 2rem 0;
    text-align: center;
}

.team__card-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--rich-black);
    margin-bottom: 0.25rem;
}

.team__card-role {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    display: block;
    margin-bottom: 0.5rem;
}

.team__card-creds {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ========== ENGAGEMENTS ========== */
.engagements {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

.engagements__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.engagement-card {
    padding: 3rem 2.25rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.5s var(--ease);
}

.engagement-card:hover {
    border-color: var(--rich-black);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.engagement-card__num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gray-lighter);
    margin-bottom: 1.5rem;
}

.engagement-card__icon {
    width: 52px;
    height: 52px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s var(--ease);
}

.engagement-card:hover .engagement-card__icon {
    background: var(--rich-black);
}

.engagement-card__icon svg {
    width: 22px;
    height: 22px;
    color: var(--rich-black);
    transition: color 0.5s var(--ease);
}

.engagement-card:hover .engagement-card__icon svg {
    color: var(--white);
}

.engagement-card h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--rich-black);
    margin-bottom: 0.75rem;
}

.engagement-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* ========== CONTACT ========== */
.contact {
    position: relative;
    padding: var(--section-gap) 0;
    background: var(--rich-black);
    overflow: hidden;
}

.contact__bg-text {
    position: absolute;
    bottom: -5%;
    left: -2%;
    font-family: var(--font-display);
    font-size: 20vw;
    font-weight: 700;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.contact__heading {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin: 1.25rem 0 1.5rem;
    letter-spacing: -0.01em;
}

.contact__text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.65);
    margin-bottom: 3rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: all 0.4s var(--ease);
}

.contact__detail:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.contact__detail:hover {
    padding-left: 0.5rem;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.contact__detail:hover .contact__detail-icon {
    background: var(--white);
    border-color: var(--white);
}

.contact__detail-icon svg {
    width: 16px;
    height: 16px;
    color: var(--white);
    transition: color 0.4s var(--ease);
}

.contact__detail:hover .contact__detail-icon svg {
    color: var(--rich-black);
}

.contact__detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.15rem;
}

.contact__detail span {
    font-size: 1rem;
    color: var(--white);
}

.contact__socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact__social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: color 0.4s var(--ease);
}

.contact__social-link svg {
    width: 16px;
    height: 16px;
}

.contact__social-link:hover {
    color: var(--white);
}

/* Contact Form */
.contact__form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.contact__form-header {
    margin-bottom: 2.5rem;
}

.contact__form-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.contact__form-header p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    transition: border-color 0.4s var(--ease);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.5rem;
}

.form-group select option {
    background: var(--charcoal);
    color: var(--white);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    pointer-events: none;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--white);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    font-size: 0.65rem;
    color: var(--gold);
}

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

/* ========== CTA FINAL ========== */
.cta-final {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: var(--rich-black);
}

.cta-final__bg {
    position: absolute;
    inset: 0;
}

.cta-final__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(184,150,78,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 100%, rgba(255,255,255,0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 100%, rgba(184,150,78,0.04) 0%, transparent 40%);
}

.cta-final__logo {
    width: 50px;
    height: auto;
    margin: 0 auto 1.75rem;
    opacity: 0.6;
}

.cta-final__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-final__tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
}

.cta-final__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cta-final__content > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.cta-final__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--black);
    color: var(--white);
    padding-top: 5rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo {
    width: 160px;
    margin-bottom: 1.25rem;
}

.footer__tagline {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.footer__col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    padding: 0.3rem 0;
    transition: all 0.3s var(--ease);
}

.footer__col a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer__socials {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer__socials a {
    width: 38px;
    height: 38px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0 !important;
    transition: all 0.4s var(--ease);
}

.footer__socials a svg {
    width: 14px;
    height: 14px;
}

.footer__socials a:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--rich-black);
    padding-left: 0 !important;
}

/* ========== FABs ========== */
.fab-group {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fab {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: all 0.4s var(--ease);
    color: var(--white);
}

.fab svg {
    width: 22px;
    height: 22px;
}

.fab--whatsapp {
    background: #25d366;
}

.fab--whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}

.fab--book {
    background: var(--rich-black);
    border: 1px solid rgba(255,255,255,0.1);
}

.fab--book:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s var(--ease);
    z-index: 900;
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    color: var(--rich-black);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--rich-black);
    border-color: var(--rich-black);
}

.back-to-top:hover svg {
    color: var(--white);
}

/* ========== PHOTO BREAK — QUOTE + CUTOUT ========== */
.photo-break {
    position: relative;
    overflow: hidden;
    background: var(--rich-black);
}

.photo-break__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 50%, rgba(184,150,78,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.photo-break__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
    padding: 5rem 0;
}

.photo-break__text-col {
    position: relative;
    z-index: 2;
}

.photo-break__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.photo-break__icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.photo-break__quote {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    line-height: 1.55;
    margin-bottom: 2rem;
}

.photo-break__attr-block {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.photo-break__attr-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.photo-break__attr-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

.photo-break__attr-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 0.15rem;
}

.photo-break__image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
}

.photo-break__cutout {
    max-height: 460px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%) contrast(1.05);
    transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
    position: relative;
    z-index: 2;
}

.photo-break__image-col::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(184,150,78,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.photo-break:hover .photo-break__cutout {
    transform: scale(1.02);
    filter: grayscale(0%) contrast(1.05);
}

/* ========== COUNTRY TAG WITH ICON ========== */
.country-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-dark);
    padding: 0.75rem 1.75rem;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.country-tag:hover {
    background: var(--rich-black);
    color: var(--white);
    border-color: var(--rich-black);
}

.country-tag:hover svg {
    color: var(--white);
}

.country-tag svg {
    width: 14px;
    height: 14px;
    color: var(--gray);
    flex-shrink: 0;
}

/* ========== TEAM BIO ========== */
.team__card-bio {
    font-size: 0.825rem;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 0.75rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* (cta-final__logo is styled in cta-final section above) */

/* ========== FOOTER DISCLAIMER ========== */
.footer__disclaimer {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.15);
    max-width: 600px;
    text-align: center;
    line-height: 1.6;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.reveal-hero {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-hero.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .header__nav { display: none; }
    .header__phone { display: none; }
    .header__actions .btn { display: none; }
    .header__menu-toggle { display: flex; }

    .section-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__col-image {
        max-width: 500px;
    }

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

    .why-us {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .why-us__image-col {
        height: 60vh;
    }

    .why-us__content-col {
        padding: 4rem 2rem;
    }

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

    .testimonial-card {
        flex: 0 0 100%;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .hero__bottom {
        flex-direction: column;
        gap: 2.5rem;
        align-items: flex-start;
    }

    .photo-break__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        padding: 4rem 0;
    }

    .photo-break__image-col {
        justify-content: flex-start;
    }

    .photo-break__cutout {
        max-height: 350px;
    }

    .hero__stats {
        gap: 2rem;
    }

    .stats-section__grid {
        flex-wrap: wrap;
    }

    .stat-block {
        flex: 0 0 calc(33.33% - 1rem);
    }
}

@media (max-width: 640px) {
    :root {
        --section-gap: 5.5rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .header__inner {
        padding: 0 1.25rem;
    }

    .hero__content {
        padding: 7rem 1.25rem 3rem;
    }

    .hero__title {
        font-size: 2.75rem;
    }

    .hero__cta-group {
        flex-direction: column;
    }

    .hero__cta-group .btn {
        width: 100%;
    }

    .hero__scroll {
        display: none;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero__stat {
        flex: 0 0 calc(50% - 1rem);
    }

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

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

    .stat-block {
        flex: 0 0 50%;
    }

    .stat-block + .stat-block::before {
        display: none;
    }

    .stat-block__number {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .photo-break__cutout {
        max-height: 280px;
    }

    .photo-break__inner {
        padding: 3rem 0;
    }

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

    .contact__form {
        padding: 2rem 1.5rem;
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .cta-final__actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .why-us__experience-badge {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 1.25rem 1.5rem;
    }

    .why-us__badge-num {
        font-size: 2.25rem;
    }

    .why-us__content-col {
        padding: 3rem 1.25rem;
    }

    .about__image-secondary {
        width: 80px;
        height: 80px;
        right: -0.5rem;
        bottom: -1rem;
        padding: 1rem;
    }

    .fab-group {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .fab {
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        left: 1.25rem;
        bottom: 1.25rem;
        width: 42px;
        height: 42px;
    }
}
