:root {
    --primary: #17252c;
    --primary-soft: #26363d;

    --accent: #b4874a;
    --accent-light: #d2b07b;

    --background: #faf9f6;
    --surface: #ffffff;
    --surface-soft: #f3f1ec;

    --text: #18242a;
    --text-soft: #687177;

    --border: #e4e0d8;

    --shadow:
        0 18px 50px rgba(25, 35, 40, 0.08);

    --container: 1180px;
}


/* ================================
   RESET
================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

body,
button,
input,
textarea,
select {
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(92%, var(--container));
    margin: auto;
}


/* ================================
   HEADER
================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid var(--border);

    transition: .3s ease;
}

.nav-container {
    height: 82px;

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


/* ================================
   LOGO
================================ */

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: var(--primary);

    color: #fff;

    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;

    position: relative;
}

.logo-mark::after {
    content: "";

    position: absolute;

    right: -4px;
    bottom: -4px;

    width: 10px;
    height: 10px;

    background: var(--accent);
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo-text strong {
    font-family: "Manrope", sans-serif;

    font-size: 18px;

    letter-spacing: 2px;
}

.logo-text small {
    margin-top: 5px;

    font-size: 8px;

    letter-spacing: 3px;

    color: var(--accent);
}


/* ================================
   NAVIGATION
================================ */

.nav {
    display: flex;
    align-items: center;

    gap: 28px;
}

.nav-link {
    position: relative;

    font-size: 12px;
    font-weight: 700;

    color: #687177;

    padding: 6px 0;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: .3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

.nav-button {
    padding: 13px 22px;

    background: var(--primary);

    color: #fff;

    font-size: 11px;
    font-weight: 800;

    transition: .3s;
}

.nav-button:hover {
    background: var(--accent);
}


/* ================================
   MOBILE MENU
================================ */

.menu-button {
    display: none;

    width: 35px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.menu-button span {
    display: block;

    height: 2px;

    margin: 6px 0;

    background: var(--primary);

    transition: .3s;
}


/* ================================
   HERO
================================ */

.hero {
    position: relative;

    min-height: 850px;

    padding-top: 82px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;
}

.hero-image {
    position: absolute;
    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=60");

    background-size: cover;
    background-position: center;

    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 32, 38, .91),
            rgba(20, 32, 38, .72) 50%,
            rgba(20, 32, 38, .30)
        );
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: .08;

    background-image:
        linear-gradient(
            rgba(255,255,255,.2) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.2) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

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

    gap: 90px;

    align-items: center;
}

.eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    color: var(--accent-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.eyebrow span {
    width: 30px;
    height: 2px;

    background: var(--accent-light);
}

.hero h1 {
    max-width: 720px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--accent-light);
}

.hero-description {
    max-width: 620px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.75);

    font-size: 16px;

    line-height: 1.8;
}


/* ================================
   BUTTONS
================================ */

.button {
    min-height: 50px;

    padding: 0 23px;

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

    gap: 14px;

    font-size: 11px;

    font-weight: 800;

    transition: .3s;

    cursor: pointer;
}

.button-primary {
    background: var(--accent);

    color: #fff;
}

.button-primary:hover {
    background: #9c733c;

    transform: translateY(-2px);
}

.button-outline {
    border: 1px solid rgba(255,255,255,.4);

    color: #fff;
}

.button-outline:hover {
    background: #fff;

    color: var(--primary);
}

.button-light {
    background: #fff;

    color: var(--primary);
}

.button-light:hover {
    background: var(--primary);

    color: #fff;
}


/* ================================
   HERO BUTTONS
================================ */

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-bottom: 50px;
}


/* ================================
   HERO STATS
================================ */

.hero-stats {
    display: flex;

    gap: 40px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: "Manrope", sans-serif;

    font-size: 25px;

    color: #fff;
}

.hero-stats span {
    color: rgba(255,255,255,.58);

    font-size: 10px;
}


/* ================================
   ESTIMATION CARD
================================ */

.estimation-panel {
    max-width: 390px;

    margin-left: auto;

    overflow: hidden;

    background: #fff;

    color: var(--primary);

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

    border-top: 4px solid var(--accent);

    box-shadow:
        0 30px 80px rgba(0,0,0,.22);
}

.panel-header {
    display: flex;
    justify-content: space-between;

    padding: 20px 25px;

    border-bottom: 1px solid var(--border);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.live {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #558565;
}

.live i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #558565;
}

.panel-body {
    padding: 30px;
}

.panel-body small {
    color: var(--text-soft);

    font-size: 9px;

    font-weight: 800;
}

.panel-body h2 {
    margin: 5px 0 22px;

    font-family: "Manrope", sans-serif;

    font-size: 45px;

    letter-spacing: -2px;
}

.estimate-progress {
    height: 5px;

    margin-bottom: 20px;

    background: #ebe8e1;
}

.estimate-progress span {
    display: block;

    width: 84%;
    height: 100%;

    background: var(--accent);
}

.estimate-item {
    display: flex;
    justify-content: space-between;

    padding: 10px 0;

    border-bottom: 1px solid #efede8;

    font-size: 12px;
}

.estimate-item span {
    color: var(--text-soft);
}

.panel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 30px;

    background: #f5f2ec;

    border-top: 1px solid var(--border);
}

.panel-footer span {
    font-size: 11px;

    color: var(--text-soft);
}

.panel-footer strong {
    font-family: "Manrope", sans-serif;

    font-size: 20px;

    color: var(--accent);
}


/* ================================
   SECTIONS
================================ */

.section {
    padding: 120px 0;
}

.section-label {
    margin-bottom: 17px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 60px;

    margin-bottom: 55px;
}

.section-heading h2,
.intro h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(38px,5vw,57px);

    line-height: 1.05;

    letter-spacing: -2px;

    color: var(--primary);
}

.section-heading h2 span,
.intro h2 span {
    color: var(--accent);
}

.section-heading > p {
    max-width: 420px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.8;
}


/* ================================
   INTRO
================================ */

.intro {
    background: #fff;
}

.intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: end;
}

.intro-grid p {
    margin-bottom: 25px;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.9;
}

.text-link {
    padding-bottom: 5px;

    border-bottom: 1px solid var(--accent);

    font-size: 12px;

    font-weight: 800;
}


/* ================================
   STATS
================================ */

.stats {
    padding: 30px 0;

    background: #f3f1ec;
}

.stats-grid {
    display: grid;

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

    border-left: 1px solid var(--border);
}

.stat {
    padding: 35px;

    background: transparent;

    border-right: 1px solid var(--border);
}

.stat strong {
    display: block;

    margin-bottom: 3px;

    font-family: "Manrope", sans-serif;

    font-size: 40px;

    color: var(--accent);
}

.stat span {
    font-size: 12px;

    font-weight: 700;

    color: var(--text-soft);
}

.stat.highlight {
    background: #fff;

    box-shadow:
        inset 0 -3px 0 var(--accent);
}


/* ================================
   SERVICES
================================ */

.services {
    background: #fff;
}

.services-grid {
    display: grid;

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

    gap: 16px;
}

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

    padding: 28px;

    position: relative;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--border);

    transition: .3s;
}

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

    border-color: #d4c2a7;

    box-shadow: var(--shadow);
}

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

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: var(--accent);

    transform: scaleX(0);

    transform-origin: left;

    transition: .3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card > span {
    color: var(--accent);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.service-card h3 {
    margin-top: 65px;

    max-width: 220px;

    font-family: "Manrope", sans-serif;

    font-size: 19px;

    line-height: 1.25;

    color: var(--primary);
}

.service-card p {
    margin-top: 10px;

    color: var(--text-soft);

    font-size: 11px;

    line-height: 1.6;
}

.service-card b {
    position: absolute;

    right: 23px;
    bottom: 22px;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);

    font-weight: 400;

    color: var(--accent);
}


/* ================================
   FEATURE IMAGE
================================ */

.feature-project {
    height: 620px;

    position: relative;

    overflow: hidden;

    color: #fff;
}

.feature-image {
    position: absolute;
    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1000&q=60");

    background-size: cover;
    background-position: center;

    transform: translateZ(0);
}

.feature-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(18,31,37,.85),
            rgba(18,31,37,.25)
        );
}

.feature-content {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    align-items: end;

    justify-content: space-between;

    padding-bottom: 80px;
}

.feature-content span {
    color: var(--accent-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.feature-content h2 {
    margin-top: 20px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(40px,5vw,68px);

    line-height: 1;

    letter-spacing: -3px;
}

.feature-content strong {
    color: var(--accent-light);
}


/* ================================
   BIDDING
================================ */

.bidding {
    background: #f7f5f0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bidding-grid {
    display: grid;

    grid-template-columns: 1fr .7fr;

    gap: 100px;

    align-items: center;
}

.bidding h2 {
    margin-bottom: 25px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px,5vw,62px);

    line-height: 1;

    letter-spacing: -2px;

    color: var(--primary);
}

.bidding h2 span {
    color: var(--accent);
}

.bidding p {
    max-width: 550px;

    margin-bottom: 30px;

    color: var(--text-soft);

    line-height: 1.8;
}


/* ================================
   BIDDING RATE
================================ */

.rate-box {
    padding: 45px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    border-top: 3px solid var(--accent);
}

.rate-ring {
    width: 210px;
    height: 210px;

    margin: auto auto 25px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background:
        conic-gradient(
            var(--accent) 98%,
            #ebe7df 98%
        );

    position: relative;
}

.rate-ring::before {
    content: "";

    position: absolute;

    inset: 10px;

    border-radius: 50%;

    background: #fff;
}

.rate-ring div {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;
}

.rate-ring strong {
    font-family: "Manrope", sans-serif;

    font-size: 50px;

    color: var(--primary);
}

.rate-ring span {
    color: var(--accent);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 800;
}

.rate-box h3 {
    margin-bottom: 8px;

    font-family: "Manrope", sans-serif;

    font-size: 21px;

    color: var(--primary);
}

.rate-box p {
    margin: auto;

    max-width: 320px;

    font-size: 12px;

    color: var(--text-soft);
}


/* ================================
   SAMPLES
================================ */

.samples {
    background: #fff;
}

.samples-grid {
    display: grid;

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

    gap: 16px;
}

.sample-card {
    display: flex;

    gap: 23px;

    padding: 28px;

    background: #fff;

    border: 1px solid var(--border);

    transition: .3s;
}

.sample-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow);

    border-color: #d4c2a7;
}

.pdf-icon {
    min-width: 58px;
    height: 70px;

    display: grid;
    place-items: center;

    background: #f4ecdf;

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;
}

.sample-card small {
    color: var(--accent);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.sample-card h3 {
    margin: 6px 0;

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    color: var(--primary);
}

.sample-card p {
    margin-bottom: 14px;

    color: var(--text-soft);

    font-size: 11px;
}

.sample-card a {
    padding-bottom: 3px;

    border-bottom: 1px solid var(--accent);

    font-size: 10px;

    font-weight: 800;

    color: var(--primary);
}


/* ================================
   PROJECTS
================================ */

.projects {
    background: #f7f5f0;
}

.project-grid {
    display: grid;

    grid-template-columns: 1.45fr 1fr;

    grid-template-rows: 280px 280px;

    gap: 16px;
}

.project {
    position: relative;

    overflow: hidden;

    background-size: cover;

    background-position: center;

    transition: .4s;
}

.project:hover {
    transform: scale(.99);
}

.project::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 35%,
            rgba(8,20,27,.82)
        );
}

.project-one {
    grid-row: span 2;

    background-image:
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=900&q=60");
}

.project-two {
    background-image:
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=800&q=60");
}

.project-three {
    background-image:
        url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=800&q=60");
}

.project-info {
    position: absolute;

    z-index: 2;

    left: 28px;
    bottom: 28px;

    color: #fff;
}

.project-info small {
    color: var(--accent-light);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}

.project-info h3 {
    margin-top: 5px;

    font-family: "Manrope", sans-serif;

    font-size: 23px;
}


/* ================================
   TEAM
================================ */

.team {
    background: #fff;
}

.team-grid {
    display: grid;

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

    gap: 16px;
}

.ceo-card {
    grid-column: span 2;

    padding: 42px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f7f4ee
        );

    border: 1px solid var(--border);

    border-top: 3px solid var(--accent);

    box-shadow: var(--shadow);
}

.ceo-info small,
.person-card small {
    color: var(--accent);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.ceo-info h3,
.person-card h3 {
    margin: 8px 0 12px;

    font-family: "Manrope", sans-serif;

    font-size: 24px;

    color: var(--primary);
}

.ceo-info p,
.person-card p {
    color: var(--text-soft);

    font-size: 11px;

    line-height: 1.7;
}

.ceo-contact {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid var(--border);
}

.ceo-contact a {
    font-size: 10px;

    font-weight: 700;

    color: var(--primary);
}

.person-card {
    padding: 30px;

    background: #fff;

    border: 1px solid var(--border);

    transition: .3s;
}

.person-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.avatar {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 45px;

    background: #f2eee6;

    color: var(--accent);

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 800;

    border: 1px solid #e5d9c6;
}


/* ================================
   CONTACT
================================ */

.contact {
    background: #f7f5f0;
}

.contact-grid {
    display: grid;

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

    gap: 100px;
}

.contact-info h2 {
    margin-bottom: 22px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px,5vw,62px);

    line-height: 1;

    letter-spacing: -2px;

    color: var(--primary);
}

.contact-info h2 span {
    color: var(--accent);
}

.contact-info > p {
    max-width: 450px;

    margin-bottom: 35px;

    color: var(--text-soft);

    line-height: 1.8;
}

.company-details {
    border-top: 1px solid var(--border);
}

.company-details div {
    padding: 17px 0;

    border-bottom: 1px solid var(--border);
}

.company-details small {
    display: block;

    margin-bottom: 5px;

    color: var(--accent);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.company-details a,
.company-details span {
    font-size: 12px;

    font-weight: 700;

    color: var(--primary);
}


/* ================================
   FORM
================================ */

.form-box {
    padding: 40px;

    background: #fff;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.form-title {
    margin-bottom: 25px;
}

.form-title small {
    color: var(--accent);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}

.form-title h3 {
    margin-top: 6px;

    font-family: "Manrope", sans-serif;

    font-size: 27px;

    color: var(--primary);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

form > div {
    margin-bottom: 15px;
}

form label {
    display: block;

    margin-bottom: 6px;

    font-size: 9px;

    font-weight: 800;

    color: var(--primary);
}

input,
select,
textarea {
    width: 100%;

    padding: 13px;

    outline: none;

    background: #fbfaf7;

    color: var(--primary);

    border: 1px solid var(--border);

    font-size: 11px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);

    background: #fff;
}

textarea {
    min-height: 130px;

    resize: vertical;
}

.submit-button {
    width: 100%;

    border: 0;
}

#formMessage {
    margin-top: 10px;

    text-align: center;

    font-size: 11px;
}


/* ================================
   CTA
================================ */

.final-cta {
    padding: 75px 0;

    background: var(--accent);

    color: #fff;
}

.final-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.final-cta small {
    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 800;
}

.final-cta h2 {
    max-width: 750px;

    margin-top: 15px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(34px,4vw,52px);

    line-height: 1;
}


/* ================================
   FOOTER
================================ */

.footer {
    padding: 65px 0 25px;

    background: #fff;

    color: var(--primary);

    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;

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

    gap: 50px;

    padding-bottom: 50px;

    border-bottom: 1px solid var(--border);
}

.footer-description {
    max-width: 280px;

    margin-top: 18px;

    color: var(--text-soft);

    font-size: 11px;

    line-height: 1.7;
}

.footer-grid > div:not(:first-child) {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-grid h4 {
    margin-bottom: 7px;

    color: var(--accent);

    font-size: 9px;

    letter-spacing: 1.5px;
}

.footer-grid a {
    color: var(--text-soft);

    font-size: 10px;

    transition: .2s;
}

.footer-grid a:hover {
    color: var(--accent);
}

.copyright {
    display: flex;

    justify-content: space-between;

    padding-top: 20px;

    color: #9a9b99;

    font-size: 9px;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1050px) {

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

        padding: 100px 0;
    }

    .estimation-panel {
        margin-left: 0;
    }

    .services-grid {
        grid-template-columns: repeat(3,1fr);
    }

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

    .ceo-card {
        grid-column: span 2;
    }
}


@media (max-width: 800px) {

    .nav,
    .nav-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .nav.mobile-open {
        position: absolute;

        top: 82px;
        left: 0;

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        padding: 25px;

        background: #fff;

        border-bottom: 1px solid var(--border);
    }

    .intro-grid,
    .bidding-grid,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .section-heading {
        flex-direction: column;

        align-items: flex-start;
    }

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

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

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

        grid-template-rows:
            300px
            250px
            250px;
    }

    .project-one {
        grid-row: auto;
    }

    .feature-content {
        flex-direction: column;

        align-items: flex-start;

        justify-content: end;

        gap: 30px;
    }
}


@media (max-width: 600px) {

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;

        gap: 20px;
    }

    .stats-grid,
    .services-grid,
    .samples-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .ceo-card {
        grid-column: auto;

        padding: 30px;
    }

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

    .form-box {
        padding: 25px;
    }

    .feature-project {
        height: 520px;
    }

    .final-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

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

    .copyright {
        flex-direction: column;

        gap: 7px;
    }
}


/* ================================
   REDUCED MOTION
================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}