/* =====================================================
   CPR WEB STUDIOS
   MAIN STYLESHEET
===================================================== */


/* =====================================================
   BRAND VARIABLES
===================================================== */

:root {

    --bg: #050505;

    --bg-dark: #030303;

    --surface: #080808;

    --surface-light: #0d0d0d;

    --border: #1c1c1c;

    --border-light: #292929;

    --text: #ffffff;

    --text-muted: #666666;

    --text-dark: #444444;

    --accent: #1683ff;

    --accent-hover: #0875ed;

}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--bg);

    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


button,
a {

    -webkit-tap-highlight-color: transparent;

}


::selection {

    background: var(--accent);

    color: #ffffff;

}


section[id] {

    scroll-margin-top: 85px;

}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 9999;

    background:
        rgba(3, 3, 3, 0.78);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255,255,255,0.05);

}


.nav-container {

    height: 78px;

    max-width: 1500px;

    margin: auto;

    padding: 0 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =====================================================
   LOGO
===================================================== */

.nav-logo {

    display: flex;

    align-items: center;

    transition: 0.3s ease;

}


.nav-logo img {

    display: block;

    width: 175px;

    height: auto;

    max-height: 48px;

    object-fit: contain;

}


.nav-logo:hover {

    opacity: 0.85;

}


/* =====================================================
   DESKTOP NAV
===================================================== */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 35px;

}


.nav-link {

    position: relative;

    color: #666666;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: 0.3s ease;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 100%;

    height: 1px;

    background: var(--accent);

    transform: scaleX(0);

    transform-origin: right;

    transition: transform 0.3s ease;

}


.nav-link:hover,
.nav-link.active {

    color: #ffffff;

}


.nav-link:hover::after,
.nav-link.active::after {

    transform: scaleX(1);

    transform-origin: left;

}


.nav-contact {

    padding: 11px 17px;

    background: var(--accent);

    color: #ffffff;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.3s ease;

}


.nav-contact:hover {

    background: var(--accent-hover);

    transform: translateY(-2px);

}


/* =====================================================
   MOBILE NAV BUTTON
===================================================== */

.mobile-menu-button {

    display: none;

    width: 42px;

    height: 42px;

    padding: 0;

    border: 1px solid var(--border-light);

    background: var(--surface);

    cursor: pointer;

    position: relative;

    z-index: 10001;

}


.mobile-menu-button span {

    position: absolute;

    left: 11px;

    width: 18px;

    height: 1px;

    background: #ffffff;

    transition: 0.3s ease;

}


.mobile-menu-button span:first-child {

    top: 16px;

}


.mobile-menu-button span:last-child {

    top: 23px;

}


.mobile-menu-button.open span:first-child {

    top: 20px;

    transform: rotate(45deg);

}


.mobile-menu-button.open span:last-child {

    top: 20px;

    transform: rotate(-45deg);

}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {

    position: fixed;

    top: 78px;

    left: 0;

    width: 100%;

    height: calc(100vh - 78px);

    background:
        rgba(3,3,3,0.98);

    visibility: hidden;

    opacity: 0;

    transform: translateY(-15px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;

}


.mobile-menu.open {

    visibility: visible;

    opacity: 1;

    transform: translateY(0);

}


.mobile-menu-inner {

    height: 100%;

    padding: 25px 7% 20px;

    display: flex;

    flex-direction: column;

}


.mobile-menu-label {

    color: var(--accent);

    font-size: 8px;

    letter-spacing: 2px;

    margin-bottom: 15px;

}


.mobile-menu nav {

    display: flex;

    flex-direction: column;

}


.mobile-menu nav a {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 14px 0;

    border-bottom: 1px solid var(--border);

    color: #ffffff;

    font-size: clamp(25px, 8vw, 38px);

    font-weight: 700;

    letter-spacing: -1px;

    transition: 0.3s ease;

}


.mobile-menu nav a span {

    width: 25px;

    color: var(--accent);

    font-size: 8px;

    letter-spacing: 1px;

}


.mobile-menu nav a:hover {

    color: var(--accent);

    padding-left: 8px;

}


.mobile-menu-footer {

    margin-top: auto;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    display: flex;

    justify-content: space-between;

    color: var(--text-dark);

    font-size: 8px;

    letter-spacing: 1px;

}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding: 150px 7% 100px;

    overflow: hidden;

}


.hero-background {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 75% 45%,
            rgba(22,131,255,0.15),
            transparent 28%
        ),

        linear-gradient(
            90deg,
            #050505,
            #080808
        );

}


.hero-background::after {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            #151515 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            #151515 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    opacity: 0.35;

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 1100px;

}


.hero-label {

    color: var(--accent);

    font-size: 9px;

    letter-spacing: 2px;

    margin-bottom: 25px;

}


.hero-content h1 {

    max-width: 1050px;

    font-size: clamp(55px, 9vw, 125px);

    line-height: 0.83;

    letter-spacing: -8px;

    font-weight: 900;

}


.hero-content h1 span {

    color: var(--accent);

}


.hero-description {

    max-width: 550px;

    margin-top: 35px;

    color: #777777;

    font-size: 13px;

    line-height: 1.8;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 35px;

}


.hero-button {

    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 14px 20px;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.3s ease;

}


.hero-button.primary {

    background: var(--accent);

    color: #ffffff;

}


.hero-button.primary:hover {

    background: var(--accent-hover);

    transform: translateY(-3px);

}


.hero-button.secondary {

    border: 1px solid var(--border-light);

    color: #777777;

}


.hero-button.secondary:hover {

    border-color: var(--accent);

    color: #ffffff;

}


.hero-bottom {

    position: absolute;

    z-index: 2;

    bottom: 25px;

    left: 7%;

    right: 7%;

    display: flex;

    justify-content: space-between;

    color: #3f3f3f;

    font-size: 7px;

    letter-spacing: 1.5px;

}


/* =====================================================
   SHARED HEADINGS
===================================================== */

.section-label {

    color: var(--accent);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;

}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    padding: 130px 7%;

    position: relative;

}


.services-section::after,
.about-section::after,
.contact-section::after {

    content: "";

    position: absolute;

    left: 7%;

    right: 7%;

    bottom: 0;

    height: 1px;

    background: #151515;

}


.section-heading {

    max-width: 750px;

    margin-bottom: 65px;

}


.section-heading h2 {

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -3px;

}


.section-heading h2 span {

    color: var(--accent);

}


.section-heading p {

    max-width: 570px;

    margin-top: 25px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.8;

}


.services-layout {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.3fr 0.7fr;

    gap: 25px;

}


.services-list {

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.service-card {

    min-height: 145px;

    display: grid;

    grid-template-columns:
        55px
        55px
        1fr
        30px;

    align-items: center;

    gap: 20px;

    padding: 25px 30px;

    background: var(--surface);

    border: 1px solid var(--border);

    position: relative;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;

}


.service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 3px;

    height: 100%;

    background: var(--accent);

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform 0.35s ease;

}


.service-card:hover {

    transform: translateX(8px);

    background: var(--surface-light);

    border-color: var(--border-light);

}


.service-card:hover::before {

    transform: scaleY(1);

}


.service-number {

    color: #333333;

    font-size: 9px;

    letter-spacing: 1px;

}


.service-icon {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border: 1px solid var(--border-light);

    color: var(--accent);

    font-size: 18px;

    transition: 0.35s ease;

}


.service-card:hover .service-icon {

    background: var(--accent);

    color: #ffffff;

    border-color: var(--accent);

    transform: rotate(8deg);

}


.service-info h3 {

    color: #ffffff;

    font-size: 17px;

    margin-bottom: 8px;

}


.service-info p {

    max-width: 470px;

    color: #555555;

    font-size: 11px;

    line-height: 1.7;

}


.service-arrow {

    color: #444444;

    font-size: 20px;

    transition: 0.35s ease;

}


.service-card:hover .service-arrow {

    color: var(--accent);

    transform: translateX(5px);

}


/* =====================================================
   SERVICES VISUAL
===================================================== */

.services-visual {

    min-height: 590px;

    position: relative;

    overflow: hidden;

    background: var(--surface);

    border: 1px solid var(--border);

}


.services-grid-pattern {

    position: absolute;

    inset: 0;

    opacity: 0.35;

    background-image:
        linear-gradient(
            #202020 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            #202020 1px,
            transparent 1px
        );

    background-size: 45px 45px;

}


.services-grid-pattern::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background: rgba(22,131,255,0.12);

    filter: blur(80px);

    top: 20%;

    left: 25%;

}


.services-visual-content {

    position: relative;

    z-index: 2;

    padding: 45px;

}


.visual-label {

    color: var(--accent);

    font-size: 8px;

    letter-spacing: 2px;

}


.visual-big-text {

    margin-top: 100px;

    font-size: clamp(55px, 7vw, 90px);

    line-height: 0.85;

    font-weight: 800;

    letter-spacing: -5px;

}


.visual-big-text span {

    color: var(--accent);

}


.services-visual-content > p {

    max-width: 300px;

    margin-top: 35px;

    color: #666666;

    font-size: 12px;

    line-height: 1.8;

}


.visual-stat {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 45px;

    padding-top: 20px;

    border-top: 1px solid #222222;

}


.visual-stat strong {

    color: var(--accent);

    font-size: 25px;

}


.visual-stat span {

    max-width: 150px;

    color: #555555;

    font-size: 9px;

    line-height: 1.5;

}


.visual-corner {

    position: absolute;

    right: 25px;

    bottom: 20px;

    color: #333333;

    font-size: 8px;

    letter-spacing: 2px;

}


/* =====================================================
   OUR WORK
===================================================== */

.work-section {

    padding: 130px 7%;

    background: var(--bg);

}


.work-heading {

    max-width: 750px;

    margin: 0 auto 70px;

    text-align: center;

}


.work-heading h2 {

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -3px;

}


.work-heading h2 span {

    color: var(--accent);

}


.work-heading p {

    max-width: 550px;

    margin: 25px auto 0;

    color: #666666;

    font-size: 13px;

    line-height: 1.8;

}


.portfolio-grid {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.3fr 0.7fr;

    gap: 25px;

}


.portfolio-card {

    overflow: hidden;

}


.portfolio-large {

    grid-row: span 2;

}


.portfolio-image {

    position: relative;

    min-height: 300px;

    overflow: hidden;

    border: 1px solid #222222;

    transition: 0.5s ease;

}


.portfolio-large .portfolio-image {

    min-height: 500px;

}


.portfolio-card:hover .portfolio-image {

    border-color: var(--accent);

    transform: translateY(-5px);

}


.restaurant-demo {

    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(22,131,255,0.2),
            transparent 35%
        ),
        #101010;

    padding: 35px;

}


.demo-browser {

    height: 100%;

    border: 1px solid #303030;

    background: #080808;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.5);

}


.demo-top {

    height: 28px;

    display: flex;

    align-items: center;

    gap: 5px;

    padding-left: 12px;

    border-bottom: 1px solid #222222;

}


.demo-top span {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #444444;

}


.restaurant-demo-content {

    padding: 25px;

}


.demo-nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.demo-nav strong {

    color: white;

    font-size: 15px;

    letter-spacing: 2px;

}


.demo-nav span {

    color: #666666;

    font-size: 7px;

    letter-spacing: 2px;

}


.restaurant-hero {

    padding: 90px 10px 70px;

}


.restaurant-hero small {

    color: var(--accent);

    font-size: 7px;

    letter-spacing: 2px;

}


.restaurant-hero h3 {

    margin-top: 15px;

    font-size: clamp(30px, 4vw, 50px);

    line-height: 0.95;

    letter-spacing: -3px;

}


.restaurant-hero button {

    margin-top: 25px;

    padding: 10px 15px;

    background: var(--accent);

    border: none;

    color: white;

    font-size: 7px;

    letter-spacing: 1px;

}


.fitness-demo {

    background:
        linear-gradient(
            135deg,
            #111111,
            #080808
        );

    display: flex;

    align-items: center;

    padding: 35px;

}


.fitness-content small {

    color: var(--accent);

    font-size: 7px;

    letter-spacing: 2px;

}


.fitness-content h3 {

    margin-top: 20px;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 0.85;

    letter-spacing: -3px;

}


.fitness-content h3 span {

    color: var(--accent);

}


.fitness-button {

    margin-top: 25px;

    display: inline-block;

    padding: 10px 14px;

    border: 1px solid #333333;

    color: #888888;

    font-size: 7px;

}


.business-demo {

    background:
        linear-gradient(
            120deg,
            #0c0c0c,
            #111111
        );

    display: flex;

    align-items: center;

    padding: 35px;

}


.business-content small {

    color: #555555;

    font-size: 7px;

    letter-spacing: 2px;

}


.business-content h3 {

    margin-top: 20px;

    max-width: 300px;

    font-size: clamp(32px, 4vw, 50px);

    line-height: 0.9;

    letter-spacing: -3px;

}


.business-content h3 span {

    color: var(--accent);

}


.business-lines {

    display: flex;

    gap: 5px;

    margin-top: 25px;

}


.business-lines span {

    width: 35px;

    height: 3px;

    background: var(--accent);

}


.portfolio-info {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px 5px;

}


.portfolio-category {

    display: block;

    color: #555555;

    font-size: 7px;

    letter-spacing: 1.5px;

    margin-bottom: 7px;

}


.portfolio-info h3 {

    color: #ffffff;

    font-size: 14px;

}


.portfolio-arrow {

    color: var(--accent);

    font-size: 20px;

    transition: 0.3s ease;

}


.portfolio-card:hover .portfolio-arrow {

    transform: translate(4px,-4px);

}


.work-cta {

    max-width: 1400px;

    margin: 70px auto 0;

    padding-top: 30px;

    border-top: 1px solid #222222;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.work-cta p {

    color: #555555;

    font-size: 11px;

}


.work-cta a {

    color: var(--accent);

    font-size: 11px;

}


.work-cta a:hover {

    color: #ffffff;

}


/* =====================================================
   ABOUT
===================================================== */

.about-section {

    padding: 140px 7%;

    position: relative;

}


.about-layout {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: center;

}


.about-visual {

    min-height: 550px;

    position: relative;

    overflow: hidden;

    background: var(--surface);

    border: 1px solid #202020;

    display: flex;

    align-items: center;

    justify-content: center;

}


.about-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            #1c1c1c 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            #1c1c1c 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    opacity: 0.4;

}


.about-grid::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background: rgba(22,131,255,0.12);

    filter: blur(80px);

}


.about-logo {

    position: relative;

    z-index: 2;

    font-size: clamp(80px,12vw,150px);

    line-height: 0.8;

    font-weight: 900;

    letter-spacing: -8px;

    color: #ffffff;

}


.about-logo span {

    display: block;

    margin-top: 15px;

    color: var(--accent);

    font-size: 10px;

    letter-spacing: 5px;

    font-weight: 400;

}


.about-year {

    position: absolute;

    top: 25px;

    left: 25px;

    color: #555555;

    font-size: 8px;

    letter-spacing: 2px;

}


.about-circle {

    position: absolute;

    right: 25px;

    bottom: 25px;

    width: 65px;

    height: 65px;

    border: 1px solid #303030;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #555555;

    font-size: 8px;

    letter-spacing: 1px;

    animation:
        aboutSpin
        12s linear infinite;

}


@keyframes aboutSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


.about-content {

    max-width: 650px;

}


.about-content h2 {

    font-size: clamp(42px,5vw,68px);

    line-height: 0.98;

    letter-spacing: -3px;

}


.about-content h2 span {

    color: var(--accent);

}


.about-content p {

    max-width: 580px;

    margin-top: 22px;

    color: #666666;

    font-size: 13px;

    line-height: 1.8;

}


.about-content .about-lead {

    color: #aaaaaa;

    font-size: 15px;

    margin-top: 30px;

}


.about-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1px;

    margin-top: 45px;

    border: 1px solid #1f1f1f;

    background: #1f1f1f;

}


.about-points div {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    background: var(--surface);

}


.about-points span {

    color: var(--accent);

    font-size: 8px;

}


.about-points strong {

    color: #888888;

    font-size: 10px;

    font-weight: 500;

}


.about-button {

    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 35px;

    padding: 14px 20px;

    border: 1px solid var(--border-light);

    color: #ffffff;

    font-size: 10px;

    transition: 0.3s ease;

}


.about-button span {

    color: var(--accent);

    font-size: 18px;

}


.about-button:hover {

    border-color: var(--accent);

    transform: translateY(-3px);

}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {

    padding: 140px 7%;

    background: var(--bg);

    position: relative;

    overflow: hidden;

}


.contact-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(22,131,255,0.07);

    filter: blur(100px);

    right: -200px;

    bottom: -200px;

    pointer-events: none;

}


.contact-layout {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: start;

}


.contact-content h2 {

    max-width: 650px;

    font-size: clamp(45px,6vw,75px);

    line-height: 0.95;

    letter-spacing: -4px;

}


.contact-content h2 span {

    color: var(--accent);

}


.contact-content > p {

    max-width: 520px;

    margin-top: 30px;

    color: #666666;

    font-size: 13px;

    line-height: 1.8;

}


.contact-details {

    margin-top: 45px;

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.contact-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px;

    border: 1px solid #1f1f1f;

    background: var(--surface);

    transition: 0.3s ease;

}


a.contact-item:hover {

    border-color: var(--accent);

    transform: translateX(6px);

}


/* =====================================================
   CONTACT ICONS
===================================================== */

.contact-icon {

    width: 40px;

    height: 40px;

    min-width: 40px;

    display: grid;

    place-items: center;

    border: 1px solid var(--border-light);

    color: var(--accent);

    font-size: 12px;

    transition: 0.3s ease;

}


.contact-icon svg {

    width: 19px;

    height: 19px;

    display: block;

    fill: currentColor;

}


.contact-item:hover .contact-icon {

    background: var(--accent);

    border-color: var(--accent);

    color: #ffffff;

}


.contact-item small {

    display: block;

    color: #555555;

    font-size: 7px;

    letter-spacing: 1.5px;

    margin-bottom: 5px;

}


.contact-item strong {

    display: block;

    color: #ffffff;

    font-size: 12px;

    font-weight: 500;

}


.contact-arrow {

    margin-left: auto;

    color: var(--accent);

    font-size: 18px;

}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-wrapper {

    background: var(--surface);

    border: 1px solid #222222;

}


.form-top {

    display: flex;

    justify-content: space-between;

    padding: 18px 25px;

    border-bottom: 1px solid #222222;

    color: #555555;

    font-size: 8px;

    letter-spacing: 1.5px;

}


.contact-form {

    padding: 35px;

}


.form-group {

    margin-bottom: 25px;

}


.form-group label {

    display: block;

    margin-bottom: 9px;

    color: #555555;

    font-size: 8px;

    letter-spacing: 1.5px;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #252525;

    outline: none;

    background: var(--bg);

    color: #ffffff;

    padding: 14px;

    font-family: inherit;

    font-size: 11px;

    transition: 0.3s ease;

}


.form-group textarea {

    resize: vertical;

    min-height: 120px;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--accent);

    box-shadow:
        0 0 0 1px
        rgba(22,131,255,0.15);

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #444444;

}


.form-group select {

    appearance: none;

    cursor: pointer;

}


.form-group select option {

    background: var(--surface);

    color: #ffffff;

}


.contact-submit {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: none;

    background: var(--accent);

    color: #ffffff;

    padding: 16px 20px;

    font-family: inherit;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;

}


.contact-submit span {

    font-size: 18px;

}


.contact-submit:hover {

    background: var(--accent-hover);

    transform: translateY(-2px);

}


.form-note {

    margin-top: 15px;

    color: #444444;

    font-size: 8px;

    line-height: 1.6;

}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    background: var(--bg-dark);

    border-top: 1px solid var(--border);

    padding: 80px 7% 25px;

}


.footer-main {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr
        0.7fr
        0.9fr
        1fr;

    gap: 60px;

    padding-bottom: 70px;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    transition: 0.3s ease;

}


.footer-logo img {

    display: block;

    width: 190px;

    height: auto;

    max-height: 60px;

    object-fit: contain;

}


.footer-logo:hover {

    opacity: 0.85;

}


.footer-brand p {

    max-width: 250px;

    margin-top: 20px;

    color: #555555;

    font-size: 10px;

    line-height: 1.7;

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column h4 {

    margin-bottom: 20px;

    color: #444444;

    font-size: 7px;

    letter-spacing: 2px;

}


.footer-column a {

    margin-bottom: 12px;

    color: #777777;

    font-size: 10px;

    transition: 0.3s ease;

}


.footer-column a:hover {

    color: var(--accent);

    transform: translateX(4px);

}


.footer-cta {

    justify-content: flex-start;

}


.footer-cta > span {

    color: #444444;

    font-size: 7px;

    letter-spacing: 2px;

}


.footer-cta > a {

    margin-top: 15px;

    color: #ffffff;

    font-size: clamp(25px,3vw,40px);

    font-weight: 700;

    letter-spacing: -2px;

}


.footer-cta > a strong {

    color: var(--accent);

    margin-left: 10px;

}


.footer-cta > a:hover {

    transform: translateX(5px);

}


.footer-bottom {

    max-width: 1400px;

    margin: auto;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: #444444;

    font-size: 7px;

    letter-spacing: 0.5px;

}


.footer-bottom a {

    color: #555555;

    transition: 0.3s ease;

}


.footer-bottom a:hover {

    color: var(--accent);

}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .services-layout {

        grid-template-columns: 1fr;

    }


    .services-visual {

        min-height: 400px;

    }


    .about-layout {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .contact-layout {

        grid-template-columns: 1fr;

        gap: 60px;

    }

}


@media (max-width: 900px) {

    .portfolio-grid {

        grid-template-columns: 1fr;

    }


    .portfolio-large {

        grid-row: auto;

    }


    .portfolio-large .portfolio-image {

        min-height: 400px;

    }

}


@media (max-width: 850px) {

    .footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 50px 30px;

    }

}


@media (max-width: 800px) {

    .desktop-nav {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    .nav-container {

        height: 70px;

        padding: 0 5%;

    }


    .nav-logo img {

        width: 145px;

        max-height: 42px;

    }


    .mobile-menu {

        top: 70px;

        height: calc(100vh - 70px);

    }


    .hero-content h1 {

        letter-spacing: -5px;

    }

}


@media (max-width: 600px) {

    .hero-section {

        padding: 130px 5% 90px;

    }


    .nav-logo img {

        width: 140px;

        max-height: 40px;

    }


    .hero-content h1 {

        font-size: clamp(48px,14vw,75px);

        letter-spacing: -4px;

    }


    .hero-description {

        font-size: 12px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

    }


    .hero-bottom {

        left: 5%;

        right: 5%;

    }


    .hero-bottom span:nth-child(2) {

        display: none;

    }


    .services-section,
    .work-section,
    .about-section,
    .contact-section {

        padding: 90px 5%;

    }


    .section-heading h2,
    .work-heading h2 {

        letter-spacing: -2px;

    }


    .service-card {

        grid-template-columns:
            35px
            45px
            1fr
            20px;

        gap: 10px;

        padding: 20px 15px;

        min-height: 125px;

    }


    .service-info h3 {

        font-size: 14px;

    }


    .service-info p {

        font-size: 10px;

    }


    .service-icon {

        width: 34px;

        height: 34px;

        font-size: 15px;

    }


    .services-visual {

        min-height: 360px;

    }


    .services-visual-content {

        padding: 30px;

    }


    .visual-big-text {

        margin-top: 70px;

        font-size: 55px;

        letter-spacing: -3px;

    }


    .portfolio-large .portfolio-image {

        min-height: 350px;

    }


    .portfolio-image {

        min-height: 280px;

    }


    .restaurant-demo {

        padding: 20px;

    }


    .restaurant-hero {

        padding: 65px 5px 50px;

    }


    .work-cta {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }


    .about-visual {

        min-height: 330px;

    }


    .about-logo {

        font-size: 90px;

        letter-spacing: -5px;

    }


    .about-content h2,
    .contact-content h2 {

        letter-spacing: -2px;

    }


    .about-points {

        grid-template-columns: 1fr;

    }


    .contact-form {

        padding: 22px;

    }


    .contact-item {

        padding: 15px;

    }


    .contact-icon {

        width: 38px;

        height: 38px;

        min-width: 38px;

    }


    .contact-icon svg {

        width: 18px;

        height: 18px;

    }


    .footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;

        padding-bottom: 50px;

    }


    .footer-brand {

        grid-column: 1 / -1;

    }


    .footer-logo img {

        width: 165px;

        max-height: 52px;

    }


    .footer-cta {

        grid-column: 1 / -1;

        padding-top: 10px;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        line-height: 1.5;

    }

}


/* =====================================================
   FOCUS
===================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {

    outline: 2px solid var(--accent);

    outline-offset: 4px;

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;

    }

}