@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&family=Source+Serif+4:wght@300;400&family=IBM+Plex+Sans:wght@300;400&display=swap');

:root {
    --navy: #0e1620;
    --navy-mid: #172030;
    --navy-light: #1e2d42;
    --amber: #d4820a;
    --amber-light: #e9a832;
    --amber-pale: #f5e6c8;
    --steel: #8a9baa;
    --steel-light: #b8c8d4;
    --off-white: #f2ede6;
    --white: #faf9f7;
    --mid: #c8bfb0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--navy);
    color: var(--off-white);
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(14, 22, 32, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--off-white);
    text-decoration: none;
}

.nav-logo span {
    color: var(--amber);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--steel);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--off-white);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 4.5rem 5rem;
    position: relative;
    z-index: 2;
    background: var(--navy);
}

/* subtle diagonal texture */
.hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.012) 40px,
            rgba(255, 255, 255, 0.012) 41px);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 2px;
    background: var(--amber);
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 5.5vw, 6.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--off-white);
}

.hero h1 em {
    font-style: normal;
    color: var(--amber);
    display: block;
}

.hero-sub {
    font-size: 0.95rem;
    color: var(--steel);
    line-height: 1.85;
    max-width: 380px;
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--amber);
    color: var(--navy);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--steel);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary::after {
    content: '→';
    transition: transform 0.2s;
}

.btn-secondary:hover {
    color: var(--off-white);
}

.btn-secondary:hover::after {
    transform: translateX(4px);
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.1) saturate(0.7);
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy) 0%, transparent 35%);
    z-index: 1;
}

.hero-badge {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 2;
    text-align: center;
    background: rgba(14, 22, 32, 0.85);
    border: 1px solid var(--amber);
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge .num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--amber);
    line-height: 1;
}

.hero-badge .label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--steel);
    margin-top: 0.4rem;
}

/* ─── TICKER ─── */
.ticker {
    background: var(--amber);
    padding: 0.85rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 22s linear infinite;
}

.ticker-item {
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0 2.5rem;
    color: var(--navy);
    font-weight: 400;
}

.ticker-item::after {
    content: '⬥';
    margin-left: 2.5rem;
    opacity: 0.4;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ─── SERVICES ─── */
.services {
    padding: 8rem 5rem;
    background: var(--navy-mid);
}

.section-header {
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-label {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.service-card {
    background: var(--navy);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.4s ease;
}

.service-card:hover {
    background: var(--navy-light);
}

.service-card:hover::before {
    width: 100%;
}

.service-num {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    pointer-events: none;
    font-weight: 600;
}

.service-icon {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.service-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--off-white);
}

.service-desc {
    font-size: 0.84rem;
    color: var(--steel);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--amber);
    letter-spacing: 0.06em;
}

/* ─── ABOUT ─── */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.15) saturate(0.6);
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content {
    background: var(--navy-light);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* corner bracket decoration */
.about-content::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: 3rem;
    height: 3rem;
    border-top: 2px solid var(--amber);
    border-left: 2px solid var(--amber);
    opacity: 0.4;
}

.about-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--off-white);
}

.about-content p {
    color: var(--steel);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
    max-width: 440px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--amber);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--steel);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

/* ─── PROCESS ─── */
.process {
    padding: 8rem 5rem;
    background: var(--navy);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.step {
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.step-dot {
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background: var(--navy);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--amber);
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.step:hover .step-dot {
    border-color: var(--amber);
    background: var(--amber);
    color: var(--navy);
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: var(--off-white);
}

.step-desc {
    font-size: 0.82rem;
    color: var(--steel);
    line-height: 1.75;
}

/* ─── CONTACT ─── */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-info {
    padding: 7rem 5rem;
    background: var(--amber);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info .section-label {
    color: rgba(14, 22, 32, 0.55);
}

.contact-info h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--navy);
}

.contact-info p {
    color: rgba(14, 22, 32, 0.65);
    font-size: 0.92rem;
    line-height: 1.8;
    max-width: 340px;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    font-size: 1rem;
    margin-top: 0.1rem;
    opacity: 0.7;
}

.contact-item-text {
    font-size: 0.9rem;
    color: rgba(14, 22, 32, 0.8);
    line-height: 1.5;
}

.contact-item-text strong {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(14, 22, 32, 0.45);
    margin-bottom: 0.2rem;
    font-weight: 400;
}

.contact-reach {
    padding: 7rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--navy-light);
}

.contact-reach h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--off-white);
}

.contact-reach p {
    font-size: 0.88rem;
    color: var(--steel);
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 3rem;
}

.reach-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.reach-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    color: var(--off-white);
    transition: border-color 0.2s, background 0.2s;
}

.reach-option:hover {
    border-color: var(--amber);
    background: var(--navy-mid);
}

.reach-option-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.reach-option-text strong {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 0.2rem;
    font-weight: 400;
}

.reach-option-text span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--off-white);
    letter-spacing: 0.04em;
}

/* ─── FOOTER ─── */
footer {
    background: #090e15;
    padding: 3rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--off-white);
    text-decoration: none;
}

.footer-logo span {
    color: var(--amber);
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-copy a:hover {
    color: var(--off-white);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left>* {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.hero-eyebrow {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.25s;
}

.hero-sub {
    animation-delay: 0.4s;
}

.hero-cta {
    animation-delay: 0.55s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

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

    .hero-left {
        padding: 8rem 2rem 4rem;
    }

    .hero-right {
        height: 40vh;
    }

    .services {
        padding: 5rem 2rem;
    }

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

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

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

    .about-image {
        height: 40vh;
    }

    .about-content {
        padding: 4rem 2rem;
    }

    .process {
        padding: 5rem 2rem;
    }

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

    .process-steps::before {
        display: none;
    }

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

    .contact-info {
        padding: 4rem 2rem;
    }

    .contact-reach {
        padding: 4rem 2rem;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem;
    }
}