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

html {
    scroll-behavior: smooth
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #151515;
    line-height: 1.6
}

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

.container {
    width: min(1180px, 92%);
    margin: auto
}

.section {
    padding: 90px 0
}

.gray {
    background: #f5f6f8
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-size: 21px;
    font-weight: 800
}

.logo span {
    color: #e21b23
}

nav {
    display: flex;
    align-items: center;
    gap: 25px
}

nav a {
    font-size: 14px;
    font-weight: 700
}

nav a:hover {
    color: #e21b23
}

.nav-btn {
    background: #e21b23;
    color: #fff !important;
    padding: 11px 19px;
    border-radius: 6px
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 27px
}

.hero {
    min-height: 690px;
   
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('images/newyorkbanner.png');
  background-size: cover;
  background-position: center;
    color: #fff;
    display: flex;
    align-items: center
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 800;
    color: #e21b23;
    margin-bottom: 13px
}

.hero h1 {
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.03;
    margin-bottom: 22px
}

.hero h1 span {
    color: #e21b23;
    display: block
}

.hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 650px;
    margin-bottom: 30px
}

.buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap
}

.btn {
    display: inline-block;
    border: 0;
    border-radius: 6px;
    padding: 14px 23px;
    font-weight: 800;
    cursor: pointer
}

.primary {
    background: #e21b23;
    color: #fff
}

.primary:hover {
    background: #bc1017
}

.outline {
    border: 1px solid #fff;
    color: #fff
}

.outline:hover {
    background: #fff;
    color: #111
}

.trust {
    display: flex;
    gap: 35px;
    margin-top: 48px
}

.trust b {
    display: block;
    font-size: 19px
}

.trust small {
    color: #aaa
}

.hero-visual {
    min-height: 440px;
    border-radius: 18px;
    background: linear-gradient(145deg, #e21b23, #111);
    display: grid;
    place-items: center;
    padding: 30px;
    box-shadow: 0 25px 70px #0007
}

.hero-visual img {
    width: 100%;
    max-width: 500px
}

.heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px
}

.heading h2 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    margin-bottom: 14px
}

.heading p {
    color: #666
}

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

.card {
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 11px;
    background: #fff;
    transition: .25s
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px #0001;
    border-color: #e21b23
}

.card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 7px;
    margin-bottom: 18px
}

.card h3 {
    font-size: 21px;
    margin-bottom: 9px
}

.card p {
    color: #666;
    margin-bottom: 18px
}

.card a {
    color: #e21b23;
    font-weight: 800
}

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

.service {
    background: #fff;
    padding: 32px;
    border-left: 4px solid #e21b23
}

.service>b {
    color: #e21b23
}

.service h3 {
    margin: 7px 0
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.about-art {
    min-height: 500px;
    border-radius: 15px;
    background: linear-gradient(145deg, #e0bebf, #111);
    display: grid;
    place-items: center;
    padding: 20px
}

.about-art img {
    width: 100%;
    max-width: 1250px;
    height: 400px;
}

.about-grid h2 {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 18px
}

.about-grid p {
    color: #666;
    margin-bottom: 15px
}

.about-grid ul {
    list-style: none;
    margin: 25px 0
}

.about-grid li {
    margin: 8px 0;
    font-weight: 700
}

.about-grid li:before {
    content: "✓";
    color: #e21b23;
    margin-right: 9px
}

.stats {
    background: #e21b23;
    color: #fff;
    padding: 45px 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 25px
}

.stats b {
    display: block;
    font-size: 30px
}

.stats span {
    opacity: .9
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.process>div {
    padding: 28px;
    border: 1px solid #e4e4e4
}

.process b {
    font-size: 34px;
    color: #e21b23
}

.process h3 {
    margin: 8px 0
}

.cta {
    background: #111;
    color: #fff;
    padding: 70px 0
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px
}

.cta h2 {
    font-size: 42px;
    line-height: 1.1
}

.cta p {
    color: #bbb
}

.white {
    background: #fff;
    color: #111
}

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

.reviews>div {
    background: #fff;
    padding: 30px;
    border-radius: 10px
}

.reviews strong {
    color: #e21b23;
    letter-spacing: 3px
}

.reviews p {
    color: #555;
    margin: 15px 0
}

.narrow {
    max-width: 900px
}

.faq>div {
    border-bottom: 1px solid #ddd
}

.faq button {
    width: 100%;
    background: none;
    border: 0;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    text-align: left;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer
}

.faq button span {
    color: #e21b23;
    font-size: 23px
}

.faq p {
    display: none;
    padding: 0 0 20px;
    color: #666
}

.faq .open p {
    display: block
}

.contact {
    background: #f5f6f8
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 65px
}

.contact-grid h2 {
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 18px
}

.contact-grid>div>p {
    color: #666;
    margin-bottom: 28px
}

.detail {
    margin: 17px 0
}

.detail b,
.detail span {
    display: block
}

.detail span {
    color: #666
}

.form {
    background: #fff;
    padding: 38px;
    border-radius: 12px;
    box-shadow: 0 15px 45px #0001
}

.form h3 {
    font-size: 27px;
    margin-bottom: 22px
}

.form label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 15px
}

.form input,
.form select,
.form textarea {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font: inherit;
    outline: none
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: #e21b23
}

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

.full {
    width: 100%
}

.form small {
    display: block;
    text-align: center;
    color: #888;
    margin-top: 10px
}

.footer {
    background: #111;
    color: #fff;
    padding-top: 60px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 50px
}

.footer p {
    color: #999;
    margin-top: 15px;
    max-width: 320px
}

.footer h4 {
    margin-bottom: 15px
}

.footer-grid>div:not(:first-child) a {
    display: block;
    color: #999;
    margin: 6px 0
}

.footer-grid a:hover {
    color: #fff
}

.bottom {
    border-top: 1px solid #292929;
    padding: 19px 0;
    color: #888;
    font-size: 13px
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: #000b;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 3000
}

.popup-overlay.show {
    display: flex
}

.popup {
    position: relative;
    width: min(500px, 100%);
    background: #fff;
    padding: 35px;
    border-radius: 12px
}

.popup h2 {
    font-size: 34px;
    line-height: 1.1
}

.popup>p {
    color: #666;
    margin: 8px 0 18px
}

.popup input,
.popup select,
.popup textarea {
    display: block;
    width: 100%;
    padding: 13px;
    margin-bottom: 11px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font: inherit
}

.close {
    position: absolute;
    right: 13px;
    top: 8px;
    border: 0;
    background: none;
    font-size: 30px;
    cursor: pointer
}

@media(max-width:900px) {
    .menu-toggle {
        display: block
    }

    nav {
        display: none;
        position: absolute;
        left: 0;
        top: 76px;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 20px 5%;
        box-shadow: 0 10px 20px #0001
    }

    nav.active {
        display: flex
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .cards,
    .reviews {
        grid-template-columns: repeat(2, 1fr)
    }

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

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

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

    .cta-inner {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:600px) {
    .section {
        padding: 65px 0
    }

    .hero {
        padding: 70px 0
    }

    .hero h1 {
        font-size: 44px
    }

    .trust {
        flex-direction: column;
        gap: 12px
    }

    .cards,
    .service-grid,
    .reviews,
    .process,
    .row,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .about-grid h2,
    .contact-grid h2,
    .cta h2 {
        font-size: 35px
    }

    .form {
        padding: 25px
    }

    .hero-visual {
        min-height: 300px
    }
}