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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0A0F1C;
    color: #F8FAFC;
}

html {
    scroll-behavior: smooth;
}

/* HEADER */

.site-header {
    min-height: 92px;

    padding: 0 4vw;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    background: #0A0F1C;

    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.08);
}


/* LOGO */

.logo-area {
    justify-self: start;
}

.logo-area a {
    display: inline-flex;
    align-items: center;
}

.logo-area img {
    width: 250px;

    display: block;
}


/* NAVIGATION */

.main-nav {
    display: flex;

    align-items: center;

    gap: 2.2rem;
}

.main-nav a {
    position: relative;

    color: #F8FAFC;

    text-decoration: none;

    font-size: .95rem;

    font-weight: 500;

    transition: color .2s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -10px;

    width: 0;
    height: 2px;

    background: #2563FF;

    transform: translateX(-50%);

    transition: width .25s ease;
}

.main-nav a:hover {
    color: #FFFFFF;
}

.main-nav a:hover::after {
    width: 18px;
}


/* HEADER BUTTON */

.header-button {
    justify-self: end;

    padding: .8rem 1.2rem;

    background: #2563FF;

    color: #FFFFFF;

    text-decoration: none;

    border-radius: 6px;

    font-size: .9rem;

    font-weight: 600;

    transition:
        transform .2s ease,
        background .2s ease;
}

.header-button:hover {
    transform: translateY(-2px);

    background: #1D4ED8;
}


/* HERO */

.hero {

    min-height: calc(100vh - 80px);

    padding: 3.5rem 5vw;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 4rem;
}

.hero-content {

    max-width: 700px;
}

.eyebrow {

    color: #2563FF;

    font-weight: 700;

    font-size: .85rem;

    letter-spacing: .14rem;

    margin-bottom: 1.3rem;
}

.hero h1 { 
    font-size: clamp(3rem, 4.6vw, 4.7rem); 
    line-height: .98; 
    margin-bottom: 1.8rem; 
}

.hero h1 span {

    color: #2563FF;
}

.hero-text {

    max-width: 600px;

    color: #94A3B8;

    font-size: 1.05rem;

    line-height: 1.7;

    margin-bottom: 2rem;
}

.hero-buttons {

    display: flex;

    gap: 1rem;
}

.primary-button,
.secondary-button {

    text-decoration: none;

    padding: .95rem 1.4rem;

    border-radius: 5px;

    font-weight: 600;
}

.primary-button {

    background: #2563FF;

    color: white;
}

.secondary-button {

    border: 1px solid #2563FF;

    color: white;
}

.hero-visual {

    display: flex;

    justify-content: center;

    align-items: center;
}

.hero-img {

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    display: block;

    border: 1px solid rgba(255,255,255,.08);
}

/* SERVICES */

.services {

    padding: 6rem 5vw;

    border-top: 1px solid rgba(255,255,255,.08);

    background: #0A0F1C;
}

.section-heading {

    max-width: 800px;

    margin-bottom: 3rem;
}

.section-heading h2 {

    font-size: clamp(2.4rem, 4vw, 4rem);

    line-height: 1.05;
}

.service-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1.5rem;
}

.service-card {

    min-height: 260px;

    padding: 2rem;

    background: #111827;

    border: 1px solid rgba(255,255,255,.08);

    transition: transform .25s ease,
                border-color .25s ease;
}

.service-card:hover {

    transform: translateY(-6px);

    border-color: #2563FF;
}

.service-number {

    display: inline-block;

    color: #2563FF;

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: .12rem;

    margin-bottom: 3rem;
}

.service-card h3 {

    font-size: 1.5rem;

    margin-bottom: 1rem;
}

.service-card p {

    color: #94A3B8;

    line-height: 1.7;

    max-width: 320px;
}

/* SERVICE CARD POLISH */

.service-card {
    position: relative;

    min-height: 280px;

    padding: 2.2rem;

    display: flex;
    flex-direction: column;

    background: #111827;

    border: 1px solid rgba(255,255,255,.09);

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


/* BLUE ACCENT LINE */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #2563FF;

    transition: width .35s ease;
}


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


/* CARD HOVER */

.service-card:hover {
    transform: translateY(-6px);

    background: #131C2C;

    border-color: rgba(37, 99, 255, .4);

    box-shadow: 0 20px 45px rgba(0,0,0,.25);
}


/* NUMBER */

.service-number {
    color: #2563FF;

    font-size: .8rem;

    font-weight: 700;

    letter-spacing: .1rem;

    margin-bottom: 2.7rem;
}


/* TITLE */

.service-card h3 {
    color: #F8FAFC;

    font-size: 1.35rem;

    margin-bottom: .9rem;
}


/* DESCRIPTION */

.service-card p {
    max-width: 360px;

    color: #94A3B8;

    line-height: 1.7;
}


/* BOTTOM DETAIL */

.service-detail {
    margin-top: auto;
    padding-top: 2rem;

    color: #64748B;

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .1rem;

    transition:
        color .25s ease,
        transform .25s ease;
}


.service-card:hover .service-detail {
    color: #2563FF;

    transform: translateX(4px);
}

/* PROJECTS */

.projects {

    padding: 6rem 5vw;

    border-top: 1px solid rgba(255,255,255,.08);

    background: #080D18;
}

.project-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 2rem;

    margin-top: 3rem;
}

.project-card {

    border: 1px solid rgba(255,255,255,.08);

    background: #111827;

    overflow: hidden;
}

.project-card-wide {

    grid-column: 1 / -1;
}

.project-image {

    width: 100%;

    background: #0A0F1C;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #94A3B8;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.project-image img {

    width: 100%;
    height: 100%;

    display: block;

    transition: transform .4s ease;
}

.project-card:hover .project-image img {

    transform: scale(1.025);
}

.project-info {

    padding: 1.6rem;
}

.project-type {

    color: #2563FF;

    font-size: .78rem;

    font-weight: 700;

    letter-spacing: .12rem;

    margin-bottom: .7rem;
}

.project-info h3 {

    font-size: 1.6rem;

    margin-bottom: 1rem;
}

.project-info a {

    color: #F8FAFC;

    text-decoration: none;

    font-weight: 600;

    transition: color .2s ease;
}

.project-info a:hover {

    color: #2563FF;
}

/* ABOUT */

.about {

    padding: 6rem 5vw;

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 6rem;

    align-items: start;

    border-top: 1px solid rgba(255,255,255,.08);

    background: #0A0F1C;
}

.about-intro {

    max-width: 620px;
}

.about-intro h2 {

    font-size: clamp(2.5rem, 4vw, 4rem);

    line-height: 1.05;

    margin-bottom: 1.5rem;
}

.about-text {

    color: #94A3B8;

    font-size: 1.05rem;

    line-height: 1.7;

    max-width: 560px;
}

.about-points {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 0;
}

.about-point {

    padding: 2rem;

    min-height: 220px;

    border-top: 1px solid rgba(255,255,255,.08);

    border-left: 1px solid rgba(255,255,255,.08);
}

.about-point:nth-child(2),
.about-point:nth-child(4) {

    border-right: 1px solid rgba(255,255,255,.08);
}

.about-point:nth-child(3),
.about-point:nth-child(4) {

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.about-point span {

    display: inline-block;

    color: #2563FF;

    font-size: .8rem;

    font-weight: 700;

    letter-spacing: .12rem;

    margin-bottom: 2.5rem;
}

.about-point h3 {

    font-size: 1.25rem;

    margin-bottom: .8rem;
}

.about-point p {

    color: #94A3B8;

    line-height: 1.65;
}

/* CONTACT CTA */

.contact-cta {

    padding: 5rem 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 4rem;

    border-top: 1px solid rgba(255,255,255,.08);

    background: linear-gradient(
        90deg,
        #0D1B33 0%,
        #0A0F1C 100%
    );
}

.contact-cta-content {

    max-width: 760px;
}

.contact-cta-content h2 {

    font-size: clamp(2.8rem, 4.5vw, 4.8rem);

    line-height: 1.05;

    margin-bottom: 1.5rem;
}

.contact-cta-content > p:last-child {

    color: #94A3B8;

    font-size: 1.05rem;

    line-height: 1.7;

    max-width: 600px;
}

.contact-cta-action {

    min-width: 280px;

    display: flex;

    flex-direction: column;

    gap: 1rem;

    align-items: stretch;
}

.cta-button {

    text-decoration: none;

    text-align: center;

    color: white;

    background: #2563FF;

    padding: 1rem 1.5rem;

    border-radius: 5px;

    font-weight: 700;

    transition: transform .2s ease,
                background .2s ease;
}

.cta-button:hover {

    transform: translateY(-3px);

    background: #1D4ED8;
}

.contact-cta-action span {

    color: #94A3B8;

    font-size: .9rem;

    text-align: center;
}

/* FOOTER */

.site-footer {

    padding: 4rem 5vw 2rem;

    background: #070B14;

    border-top: 1px solid rgba(255,255,255,.08);
}


.footer-top {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 5rem;

    align-items: start;

    padding-bottom: 3.5rem;
}


.footer-brand img {

    width: 210px;

    display: block;

    margin-bottom: 1.5rem;
}


.footer-brand p {

    max-width: 380px;

    color: #94A3B8;

    line-height: 1.7;

    font-size: .95rem;
}


.footer-nav,
.footer-contact {

    display: flex;

    flex-direction: column;

    gap: .8rem;
}


.footer-nav h3,
.footer-contact h3 {

    color: #2563FF;

    font-size: .8rem;

    letter-spacing: .12rem;

    text-transform: uppercase;

    margin-bottom: .7rem;
}


.footer-nav a,
.footer-contact a {

    color: #F8FAFC;

    text-decoration: none;

    font-size: .95rem;

    transition: color .2s ease;
}


.footer-nav a:hover,
.footer-contact a:hover {

    color: #2563FF;
}


.footer-bottom {

    padding-top: 1.5rem;

    border-top: 1px solid rgba(255,255,255,.08);

    display: flex;

    justify-content: space-between;

    color: #64748B;

    font-size: .8rem;
}

/* PROJECT PAGE */

.project-hero {

    padding: 6rem 5vw 4rem;

    max-width: 1100px;
}

.project-hero h1 {

    font-size: clamp(3.5rem, 7vw, 6.5rem);

    line-height: 1;

    margin-bottom: 1.5rem;
}

.project-summary {

    max-width: 700px;

    color: #94A3B8;

    font-size: 1.1rem;

    line-height: 1.7;
}

.project-showcase {

    padding: 0 5vw 6rem;
}

.project-showcase {

    padding: 0 5vw 6rem;
}


.project-shot {

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.08);

    background: #111827;
}


.project-shot img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


.project-shot-large {

    margin-bottom: 2rem;
}


.project-shot-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 2rem;

    margin-bottom: 2rem;
}

.project-shot {
    overflow: hidden;
    cursor: pointer;
}

.project-shot img {
    transition: transform .45s ease;
}

.project-shot:hover img {
    transform: scale(1.03);
}

.project-navigation {
    padding: 1rem 5vw 6rem;
}

.project-navigation-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;

    padding-top: 2rem;

    border-top: 1px solid rgba(255,255,255,.08);
}

.project-nav-link {
    text-decoration: none;
    color: #F8FAFC;
}

.project-nav-link span {
    display: block;

    color: #64748B;

    font-size: .75rem;

    text-transform: uppercase;

    letter-spacing: .12rem;

    margin-bottom: .5rem;
}

.project-nav-link strong {
    font-size: 1.05rem;

    transition: color .2s ease;
}

.project-nav-link:hover strong {
    color: #2563FF;
}

.project-nav-next {
    text-align: right;
}

.project-nav-home {
    text-decoration: none;

    color: #94A3B8;

    font-size: .9rem;

    transition: color .2s ease;
}

.project-nav-home:hover {
    color: #2563FF;
}

.project-card {
    transition: transform .3s ease,
                border-color .3s ease,
                box-shadow .3s ease;
}

.project-card:hover {
    transform: translateY(-6px);

    border-color: rgba(37, 99, 255, .45);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

.project-card .project-image img {
    transition: transform .45s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.025);
}

.project-card .project-image {
    overflow: hidden;
}

.project-card {
    position: relative;
}

.project-link::after {
    content: "";
    position: absolute;
    inset: 0;
}

.project-card {
    cursor: pointer;
}

.project-card:hover .project-link {
    color: #2563FF;
}

/* CONTACT */

.contact-section {
    padding: 7rem 5vw;

    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 8rem;

    background: #0A0F1C;

    border-top: 1px solid rgba(255,255,255,.08);
}


.contact-intro h2 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);

    line-height: 1.05;

    margin-bottom: 1.5rem;
}


.contact-text {
    max-width: 500px;

    color: #94A3B8;

    line-height: 1.7;

    margin-bottom: 2rem;
}


.contact-email {
    color: #F8FAFC;

    text-decoration: none;

    font-weight: 600;

    transition: color .2s ease;
}


.contact-email:hover {
    color: #2563FF;
}


/* FORM */

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 1.5rem;
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1.5rem;
}


.form-group {
    display: flex;
    flex-direction: column;

    gap: .65rem;
}


.form-group label {
    color: #F8FAFC;

    font-size: .85rem;

    font-weight: 600;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 1rem 1.1rem;

    background: #111827;

    color: #F8FAFC;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 5px;

    font: inherit;

    outline: none;

    transition: border-color .2s ease,
                background .2s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563FF;

    background: #0F172A;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748B;
}


.form-group textarea {
    resize: vertical;

    min-height: 170px;
}


.form-submit {
    align-self: flex-start;

    padding: 1rem 1.6rem;

    background: #2563FF;

    color: white;

    border: none;

    border-radius: 5px;

    font: inherit;

    font-weight: 600;

    cursor: pointer;

    transition: transform .2s ease,
                background .2s ease;
}


.form-submit:hover {
    transform: translateY(-2px);

    background: #1D4ED8;
}


.form-note {
    color: #64748B;

    font-size: .8rem;
}

/* CONTACT FORM POPUP */

.form-popup {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .75);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 2rem;

    opacity: 0;
    visibility: hidden;

    transition: opacity .25s ease,
                visibility .25s ease;

    z-index: 9999;
}


.form-popup.active {
    opacity: 1;
    visibility: visible;
}


.form-popup-content {
    position: relative;

    width: 100%;
    max-width: 460px;

    padding: 3rem;

    text-align: center;

    background: #0F172A;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 8px;

    box-shadow: 0 25px 70px rgba(0,0,0,.45);

    transform: translateY(20px);

    transition: transform .25s ease;
}


.form-popup.active .form-popup-content {
    transform: translateY(0);
}


.form-popup-close {
    position: absolute;

    top: 1rem;
    right: 1.2rem;

    background: none;
    border: none;

    color: #64748B;

    font-size: 1.7rem;

    cursor: pointer;

    transition: color .2s ease;
}


.form-popup-close:hover {
    color: #F8FAFC;
}


.form-popup-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 1.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(37, 99, 255, .12);

    color: #2563FF;

    font-size: 1.7rem;
    font-weight: 700;
}


.form-popup-content h3 {
    font-size: 1.7rem;

    margin-bottom: .8rem;
}


.form-popup-content p {
    color: #94A3B8;

    line-height: 1.6;

    margin-bottom: 1.8rem;
}


.form-popup-button {
    padding: .9rem 1.5rem;

    background: #2563FF;

    color: white;

    border: none;

    border-radius: 5px;

    font: inherit;
    font-weight: 600;

    cursor: pointer;

    transition: background .2s ease,
                transform .2s ease;
}


.form-popup-button:hover {
    background: #1D4ED8;

    transform: translateY(-2px);
}

.form-popup-icon.error {
    background: rgba(239, 68, 68, .12);
    color: #EF4444;
}

/* BUTTON HOVER EFFECTS */

.header-button,
.primary-button,
.secondary-button {
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        color .25s ease;
}


/* BLUE BUTTONS */

.header-button:hover,
.primary-button:hover {
    transform: translateY(-3px);

    background: #1D4ED8;

    box-shadow: 0 8px 25px rgba(37, 99, 255, .30);
}


/* VIEW OUR WORK */

.secondary-button:hover {
    transform: translateY(-3px);

    background: #2563FF;

    border-color: #2563FF;

    color: #FFFFFF;

    box-shadow: 0 8px 25px rgba(37, 99, 255, .25);
}

.about-point {
    position: relative;
    overflow: hidden;

    transition:
        background .3s ease,
        transform .3s ease;
}

.about-point::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: #2563FF;

    transition: height .35s ease;
}

.about-point:hover {
    background: #111827;
}

.about-point:hover::before {
    height: 100%;
}

.about-point span {
    display: inline-block;

    transition:
        transform .25s ease,
        color .25s ease;
}

.about-point:hover span {
    transform: translateX(5px);
    color: #60A5FA;
}

.about-highlight {
    color: #2563FF;
}

.contact-email {
    position: relative;
    display: inline-block;

    color: #F8FAFC;
    text-decoration: none;
    font-weight: 600;
}

.contact-email::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: #2563FF;

    transition: width .25s ease;
}

.contact-email:hover {
    color: #2563FF;
}

.contact-email:hover::after {
    width: 100%;
}

/* PROJECT IMAGE LIGHTBOX */

.project-lightbox {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 4rem 7rem;

    background: rgba(3, 7, 18, .94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;

    z-index: 10000;
}

.project-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image-wrapper {
    max-width: 1400px;
    max-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 88vh;

    display: block;

    object-fit: contain;

    box-shadow: 0 25px 80px rgba(0,0,0,.5);
}

.lightbox-close {
    position: absolute;

    top: 1.5rem;
    right: 2rem;

    background: none;
    border: none;

    color: #F8FAFC;

    font-size: 2.5rem;
    line-height: 1;

    cursor: pointer;

    transition:
        color .2s ease,
        transform .2s ease;
}

.lightbox-close:hover {
    color: #2563FF;
    transform: scale(1.1);
}

.lightbox-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(17, 24, 39, .8);

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    color: #F8FAFC;

    font-size: 2.4rem;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-arrow:hover {
    background: #2563FF;
    border-color: #2563FF;
    color: #FFFFFF;
}

body.lightbox-open {
    overflow: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #2563FF;
    outline-offset: 3px;
}


/* MOBILE HEADER */
/* MOBILE HEADER */
/* MOBILE HEADER */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px 0;
    background: #F8FAFC;
    transition:
        transform .25s ease,
        opacity .25s ease;
}

@media (max-width: 900px) {

    .site-header {
        min-height: 82px;
        padding: 0 5vw;
        grid-template-columns: 1fr auto;
        position: relative;
    }

    .logo-area img {
        width: 210px;
    }

    .header-button {
        display: none;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
        z-index: 101;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 1.5rem 5vw 2rem;

        background: #0A0F1C;
        border-bottom: 1px solid rgba(255,255,255,.08);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;

        z-index: 100;
    }

    .main-nav a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* MOBILE HERO */

.hero {
    min-height: auto;

    grid-template-columns: 1fr;
    gap: 3rem;

    padding: 4rem 5vw;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: clamp(2.7rem, 9vw, 4rem);
    line-height: 1;
}

.hero-text {
    max-width: 550px;
    font-size: 1rem;
}

.hero-visual {
    width: 100%;
}

.hero-img {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.hero-buttons {
    flex-wrap: wrap;
}

/* MOBILE SERVICES */

.services {
    padding: 5rem 5vw;
}

.service-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.service-card {
    min-height: 250px;
}


/* MOBILE PROJECTS */

.projects {
    padding: 5rem 5vw;
}

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

.project-card {
    width: 100%;
}


/* MOBILE ABOUT */

.about {
    padding: 5rem 5vw;

    grid-template-columns: 1fr;
    gap: 3.5rem;
}

.about-intro {
    max-width: 100%;
}

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


/* MOBILE CONTACT */

.contact-section {
    padding: 5rem 5vw;

    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-intro {
    max-width: 600px;
}

.contact-form {
    width: 100%;
}


/* MOBILE FOOTER */

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

.footer-brand {
    grid-column: 1 / -1;
}

.service-card:active,
.project-card:active,
.about-point:active {
    transform: scale(.98);
}

.primary-button:active,
.secondary-button:active,
.header-button:active,
.form-submit:active {
    transform: scale(.97);
}

}






@media (max-width: 550px) {

    .hero {
        padding: 3.5rem 5vw;
        gap: 2.5rem;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        text-align: center;
    }

    /* SMALL PHONE */

.services,
.projects,
.about,
.contact-section {
    padding-left: 5vw;
    padding-right: 5vw;
}

.section-heading h2 {
    font-size: 2.4rem;
}


/* SERVICES */

.service-card {
    min-height: 240px;
    padding: 1.8rem;
}


/* PROJECTS */

.project-grid {
    gap: 1.5rem;
}


/* ABOUT */

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

.about-point {
    min-height: 200px;

    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}


/* CONTACT */

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

.contact-intro h2 {
    font-size: 2.8rem;
}


/* FOOTER */

.footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.footer-brand {
    grid-column: auto;
}

.footer-bottom {
    flex-direction: column;
    gap: .7rem;
}


}