@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/inter.woff2') format('woff2');
}

:root {
    --brand: #132968;
    --brand-soft: #9CA3AF;
}

html { scroll-behavior: smooth; }

.nav-link {
    position: relative;
    font-weight: 700;
    color: #132968;
    transition: color .2s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #9CA3AF;
    transition: width .2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: none;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-left.is-visible {
    opacity: 1;
    transform: none;
}

.form-input {
    width: 100%;
    height: 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: #fff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #132968;
    box-shadow: 0 0 0 2px rgba(19, 41, 104, 0.15);
}

.form-textarea {
    width: 100%;
    min-height: 8rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.75rem;
    background: #fff;
}

.form-input.is-invalid,
.form-textarea.is-invalid {
    border-color: #dc2626;
}

.field-error {
    display: none;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.25;
    color: #dc2626;
}

.field-error.is-visible {
    display: block;
}

.site-toast-root {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: min(340px, calc(100vw - 2rem));
    pointer-events: none;
}

.site-toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    background: #0f172a;
    color: #fff;
    border-radius: 0.75rem;
    padding: 0.85rem 0.95rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}

.site-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.site-toast-success { background: #132968; }
.site-toast-error { background: #b91c1c; }

.site-toast-icon {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-toast-svg {
    width: 0.9rem;
    height: 0.9rem;
}

.site-toast-body {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.35;
    padding-top: 0.05rem;
}

.site-toast-close {
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 0.1rem;
    display: inline-flex;
}

.site-toast-close-svg {
    width: 0.95rem;
    height: 0.95rem;
}

.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #132968;
    color: #fff;
    font-weight: 600;
    border-radius: 0.375rem;
    padding: 0.75rem 1.5rem;
    transition: background .2s ease;
}

.btn-brand:hover { background: #2a3433; }

.btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #9CA3AF;
    color: #132968;
    font-weight: 600;
    border-radius: 0.375rem;
    padding: 0.75rem 2rem;
    transition: opacity .2s ease;
}

.btn-soft:hover { opacity: .9; }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 500;
    border-radius: 0.375rem;
    padding: 0.75rem 2rem;
    background: transparent;
    transition: background .2s ease, color .2s ease;
}

.btn-outline-white:hover {
    background: #fff;
    color: #132968;
}

.region-marquee-wrap {
    overflow: hidden;
    width: 100%;
}

.region-marquee {
    display: flex;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    animation: region-scroll 40s linear infinite;
}

.region-marquee:hover {
    animation-play-state: paused;
}

.region-marquee-group {
    display: flex;
    flex-shrink: 0;
    gap: 0.75rem;
    padding-right: 0.75rem;
}

.region-card {
    position: relative;
    flex-shrink: 0;
    width: 7rem;
    height: 5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,.06);
    background: #e5e7eb;
}

@media (min-width: 640px) {
    .region-marquee-group {
        gap: 0.85rem;
        padding-right: 0.85rem;
    }
    .region-card {
        width: 8rem;
        height: 6rem;
    }
}

@media (min-width: 768px) {
    .region-marquee-group {
        gap: 1rem;
        padding-right: 1rem;
    }
    .region-card {
        width: 140px;
        height: 96px;
    }
}

.region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.region-card-label {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,.9);
    border-radius: 0.25rem;
    padding: 0 0.5rem;
    white-space: nowrap;
}

.region-card-label span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

@keyframes region-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .region-marquee {
        animation: none;
    }
}

/* Construction animated banner (SVG/CSS — no photos) */
.hero-banner {
    background: #070e1c;
}

.hero-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,14,28,0.45) 0%, rgba(7,14,28,0.25) 45%, rgba(7,14,28,0.72) 100%);
    z-index: 1;
}

.hero-banner .container {
    z-index: 5;
}

.hero-banner__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(156,163,175,0.45);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d1d5db;
    background: rgba(19,41,104,0.35);
}

.hero-banner__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    z-index: 5;
}

.hero-banner__scroll span {
    display: block;
    width: 1.25rem;
    height: 2rem;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 999px;
    position: relative;
}

.hero-banner__scroll span::after {
    content: '';
    position: absolute;
    top: 0.35rem;
    left: 50%;
    width: 0.3rem;
    height: 0.3rem;
    margin-left: -0.15rem;
    border-radius: 50%;
    background: #fff;
    animation: hero-scroll 1.6s ease-in-out infinite;
}

@keyframes hero-scroll {
    0% { opacity: 0; transform: translateY(0); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateY(0.85rem); }
}

.const-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background: #071225;
}

.const-sky {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 40% at 72% 18%, rgba(245,158,11,0.12), transparent 55%),
        radial-gradient(ellipse 40% 35% at 20% 30%, rgba(147,197,253,0.1), transparent 50%),
        linear-gradient(180deg, #060e1c 0%, #132968 42%, #0a1630 72%, #050b16 100%);
    animation: const-sky-shift 18s ease-in-out infinite alternate;
}

.const-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 28% 12%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 45% 22%, rgba(255,255,255,0.65), transparent),
        radial-gradient(1px 1px at 62% 8%, rgba(255,255,255,0.45), transparent),
        radial-gradient(1.5px 1.5px at 78% 15%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 88% 28%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 35% 35%, rgba(255,255,255,0.35), transparent);
    animation: const-stars-twinkle 5s ease-in-out infinite alternate;
    opacity: 0.7;
}

.const-glow {
    position: absolute;
    top: 8%;
    right: 16%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.35) 0%, rgba(245,158,11,0.08) 40%, transparent 70%);
    animation: const-pulse 7s ease-in-out infinite;
    filter: blur(2px);
}

.const-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(156,163,175,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(156,163,175,0.07) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 68%);
    animation: const-grid-move 24s linear infinite;
}

.const-haze {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    background: linear-gradient(180deg, transparent, rgba(10,20,40,0.55) 40%, rgba(3,7,18,0.75));
    pointer-events: none;
    z-index: 1;
}

.const-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
    z-index: 2;
}

.const-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.const-far {
    animation: const-far-drift 20s ease-in-out infinite alternate;
}

.const-build {
    transform-origin: center bottom;
    transform-box: fill-box;
    animation: const-rise 3.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.const-build--1 { animation-delay: 0.2s; }
.const-build--2 { animation-delay: 0.55s; }
.const-build--3 { animation-delay: 0.85s; }
.const-build--4 { animation-delay: 0.35s; }
.const-build--5 { animation-delay: 1.05s; }
.const-build--core { animation-delay: 0.65s; }

.const-floors .floor {
    opacity: 0;
    animation: const-floor-in 0.55s ease-out both;
}

.const-floors .floor-1 { animation-delay: 1.2s; }
.const-floors .floor-2 { animation-delay: 1.55s; }
.const-floors .floor-3 { animation-delay: 1.9s; }
.const-floors .floor-4 { animation-delay: 2.25s; }
.const-floors .floor-5 { animation-delay: 2.6s; }
.const-floors .floor-6 { animation-delay: 2.95s; }
.const-floors .floor-7 { animation-delay: 3.3s; }
.const-floors .floor-8 { animation-delay: 3.65s; }

.const-windows .win {
    animation: const-window-glow 3.8s ease-in-out infinite;
}

.const-windows .win:nth-child(odd) { animation-delay: 0.35s; }
.const-windows .win:nth-child(3n) { animation-delay: 0.9s; }
.const-windows .win:nth-child(5n) { animation-delay: 1.6s; }
.const-windows .win:nth-child(7n) { animation-delay: 2.2s; }

.const-scaffold {
    animation: const-scaffold-pulse 5s ease-in-out infinite;
}

.const-crane-arm {
    transform-origin: 711px 205px;
    animation: const-crane-swing 9s ease-in-out infinite;
}

.const-load {
    transform-origin: 504px 212px;
    animation: const-hook-drop 9s ease-in-out infinite;
}

.const-road-dash {
    animation: const-road-scroll 2.2s linear infinite;
}


.const-dust span,
.const-beams span,
.const-sparks span {
    position: absolute;
    display: block;
    pointer-events: none;
}

.const-dust span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(209,213,219,0.5);
    bottom: 16%;
    z-index: 2;
    animation: const-dust-float 8s linear infinite;
}

.const-dust span:nth-child(1) { left: 14%; animation-delay: 0s; }
.const-dust span:nth-child(2) { left: 28%; animation-delay: 1.1s; width: 4px; height: 4px; }
.const-dust span:nth-child(3) { left: 42%; animation-delay: 2s; }
.const-dust span:nth-child(4) { left: 55%; animation-delay: 0.6s; width: 5px; height: 5px; }
.const-dust span:nth-child(5) { left: 68%; animation-delay: 1.7s; }
.const-dust span:nth-child(6) { left: 80%; animation-delay: 2.5s; width: 3px; height: 3px; }
.const-dust span:nth-child(7) { left: 92%; animation-delay: 3.2s; }

.const-beams span {
    width: 2px;
    height: 110px;
    border-radius: 2px;
    background: linear-gradient(180deg, transparent, rgba(147,197,253,0.75), transparent);
    top: 18%;
    z-index: 2;
    animation: const-beam 5.5s ease-in-out infinite;
}

.const-beams span:nth-child(1) { left: 22%; animation-delay: 0s; }
.const-beams span:nth-child(2) { left: 48%; animation-delay: 1.2s; height: 140px; }
.const-beams span:nth-child(3) { left: 64%; animation-delay: 2.4s; }
.const-beams span:nth-child(4) { left: 82%; animation-delay: 3.1s; height: 90px; }

.const-sparks span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 8px 2px rgba(245,158,11,0.9);
    bottom: 42%;
    left: 58%;
    z-index: 3;
    animation: const-spark 1.4s ease-out infinite;
}

.const-sparks span:nth-child(1) { animation-delay: 0s; }
.const-sparks span:nth-child(2) { animation-delay: 0.18s; left: 59%; }
.const-sparks span:nth-child(3) { animation-delay: 0.35s; left: 57%; bottom: 44%; }
.const-sparks span:nth-child(4) { animation-delay: 0.5s; left: 60%; }
.const-sparks span:nth-child(5) { animation-delay: 0.7s; left: 56.5%; bottom: 41%; }
.const-sparks span:nth-child(6) { animation-delay: 0.9s; left: 58.5%; }
.const-sparks span:nth-child(7) { animation-delay: 1.05s; left: 59.5%; bottom: 43%; }
.const-sparks span:nth-child(8) { animation-delay: 1.2s; left: 57.5%; }

@keyframes const-sky-shift {
    from { filter: brightness(1) saturate(1); }
    to { filter: brightness(1.12) saturate(1.08); }
}

@keyframes const-stars-twinkle {
    from { opacity: 0.45; }
    to { opacity: 0.85; }
}

@keyframes const-grid-move {
    from { background-position: 0 0; }
    to { background-position: 56px 56px; }
}

@keyframes const-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.95; transform: scale(1.12); }
}

@keyframes const-far-drift {
    from { transform: translateX(-8px); }
    to { transform: translateX(10px); }
}

@keyframes const-rise {
    from { transform: translateY(45%) scaleY(0.15); opacity: 0; }
    to { transform: translateY(0) scaleY(1); opacity: 1; }
}

@keyframes const-floor-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes const-window-glow {
    0%, 100% { opacity: 0.2; }
    40% { opacity: 0.85; }
    70% { opacity: 0.35; }
}

@keyframes const-scaffold-pulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 0.9; }
}

@keyframes const-crane-swing {
    0%, 100% { transform: rotate(-2.5deg); }
    50% { transform: rotate(3.5deg); }
}

@keyframes const-hook-drop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(48px); }
}

@keyframes const-road-scroll {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -50; }
}

@keyframes const-dust-float {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    12% { opacity: 0.75; }
    100% { transform: translateY(-260px) translateX(18px) scale(0.3); opacity: 0; }
}

@keyframes const-beam {
    0%, 100% { opacity: 0; transform: translateY(0) scaleY(0.35); }
    35% { opacity: 0.85; transform: translateY(24px) scaleY(1); }
    65% { opacity: 0; }
}

@keyframes const-spark {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--sx, 18px), var(--sy, -28px)) scale(0); opacity: 0; }
}

.const-sparks span:nth-child(1) { --sx: 22px; --sy: -32px; }
.const-sparks span:nth-child(2) { --sx: -16px; --sy: -24px; }
.const-sparks span:nth-child(3) { --sx: 28px; --sy: -18px; }
.const-sparks span:nth-child(4) { --sx: -22px; --sy: -36px; }
.const-sparks span:nth-child(5) { --sx: 12px; --sy: -40px; }
.const-sparks span:nth-child(6) { --sx: -28px; --sy: -20px; }
.const-sparks span:nth-child(7) { --sx: 30px; --sy: -28px; }
.const-sparks span:nth-child(8) { --sx: -10px; --sy: -34px; }

#mobile-menu{
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    top: 79px;
    height: 100vh;
}

#mobile-menu.hidden{
    display: none;
}

.hamburger {
    cursor: pointer;
    width: 48px;
    height: 48px;
    transition: all 0.25s;
    outline: none !important;
}

.hamburger__top-bun,
.hamburger__bottom-bun {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #000;
  transform: rotate(0);
  transition: all 0.5s;
}

.hamburger:hover [class*="-bun"] {
  background: #333;
}

.hamburger__top-bun {
  transform: translateY(-5px);
}

.hamburger__bottom-bun {
  transform: translateY(3px);
}

.open {
  transform: rotate(90deg);
  transform: translateY(-1px);
  transition: all ease-in-out 600ms;
}

.open .hamburger__top-bun {
  transform:
    rotate(45deg)
    translateY(0px);
}

.open .hamburger__bottom-bun {
  transform:
    rotate(-45deg)
    translateY(0px);
}

@media (prefers-reduced-motion: reduce) {
    .const-build,
    .const-crane-arm,
    .const-load,
    .const-dust span,
    .const-beams span,
    .const-sparks span,
    .const-windows .win,
    .const-floors .floor,
    .const-sky,
    .const-grid,
    .const-stars,
    .const-glow,
    .const-far,
    .const-scaffold,
    .const-road-dash {
        animation: none !important;
    }

    .const-build,
    .const-floors .floor {
        opacity: 1;
        transform: none;
    }
}
