:root {
    --black: #0E0B0B;
    --black-2: #171212;
    --cream: #FFF7F0;
    --cream-soft: #cbb9b4;
    --red: #E63946;
    --pink: #FFB3C1;
    --orange: #FF8C42;
    --yellow: #FFD23F;
    --radius: 22px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
.display {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h3,
.eyebrow,
nav a,
.btn,
.tag {
    font-family: 'Space Grotesk', sans-serif;
}

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

::selection {
    background: var(--yellow);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black-2);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

/* ===== Navbar ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 6%;
    transition: background .3s ease, padding .3s ease;
}

header.scrolled {
    background: rgba(14, 11, 11, 0.7);
    backdrop-filter: blur(14px);
    padding: 14px 6%;
    border-bottom: 1px solid rgba(255, 247, 240, 0.08);
}

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

.logo-wrap svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--cream);
}

.logo-text span {
    color: rgb(0, 0, 0);
}

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

nav a {
    font-weight: 600;
    font-size: 0.92rem;
    position: relative;
    padding: 4px 2px;
    color: var(--cream-soft);
    transition: color .2s ease;
}

nav a:hover {
    color: var(--cream);
}

.nav-cta {
    background: var(--cream);
    color: var(--black) !important;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.nav-cta .arrow-circ {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--black);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.burger span {
    width: 26px;
    height: 3px;
    background: var(--cream);
    border-radius: 3px;
    transition: .3s;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 6% 60px;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    background:
        radial-gradient(ellipse at 75% 15%, rgba(255, 210, 63, 0.35) 0%, transparent 45%),
        linear-gradient(150deg, var(--orange) 0%, var(--red) 45%, var(--black) 85%);
}

.hero-bg-shape {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .5;
    pointer-events: none;
    background:
        radial-gradient(circle at 85% 30%, rgba(255, 179, 193, 0.4), transparent 50%);
}

.hero-top {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}

.hero-headline {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: clamp(3rem, 7.5vw, 6rem);
    font-weight: 800;
    color: var(--cream);
}

.hero-side {
    padding-top: 18px;
}

.hero-side h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--cream);
    margin-bottom: 14px;
}

.hero-side p {
    font-size: 0.92rem;
    color: rgba(255, 247, 240, 0.65);
    max-width: 320px;
}

/* numbered services row */
.hero-tags {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 247, 240, 0.18);
}

.hero-tag .num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--black);
    background: var(--cream);
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.hero-tag p {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--cream);
}

/* ===== Trust / marquee strip ===== */
.trust-strip {
    background: var(--black-2);
    border-radius: 32px;
    margin: -50px 6% 0;
    position: relative;
    z-index: 5;
    padding: 30px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid rgba(255, 247, 240, 0.06);
}

.trust-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream-soft);
    max-width: 160px;
    line-height: 1.4;
}

.trust-items {
    display: flex;
    gap: 46px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--cream);
    white-space: nowrap;
}

.trust-item .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.trust-item:nth-child(1) .icon {
    border-color: var(--orange);
    color: var(--orange);
}

.trust-item:nth-child(2) .icon {
    border-color: var(--pink);
    color: var(--pink);
}

.trust-item:nth-child(3) .icon {
    border-color: var(--yellow);
    color: var(--yellow);
}

.trust-item:nth-child(4) .icon {
    border-color: var(--red);
    color: var(--red);
}

/* ===== Section base ===== */
section {
    padding: 110px 6%;
}

.section-head {
    max-width: 680px;
    margin-bottom: 60px;
}

.tag {
    display: inline-block;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.section-head h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--cream);
}

.section-head p {
    color: var(--cream-soft);
    font-size: 1.05rem;
    max-width: 560px;
}

/* ===== Services (Behind the Designs style) ===== */
.services {
    background: var(--black);
}

.services-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 70px;
}

.services-top .tag {
    color: var(--orange);
}

.services-top h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--cream);
}

.services-top .right p.lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 22px;
}

.services-top .right p.sub {
    color: var(--cream-soft);
    font-size: 0.92rem;
    max-width: 340px;
    margin-bottom: 24px;
}

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

.service-card {
    background: var(--black-2);
    border: 1px solid rgba(255, 247, 240, 0.07);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    font-size: 1.7rem;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--cream);
}

.service-card p {
    color: var(--cream-soft);
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.88rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--cream);
}

.service-list li::before {
    content: '✦';
    color: var(--orange);
    font-size: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: var(--cream);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255, 247, 240, 0.3);
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ===== Work / Projects ===== */
.work {
   background: rgb(31, 30, 30);
}

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

.work-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--black);
    transition: transform .3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 247, 240, 0.06);
}

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

.work-thumb {
    height: 220px;
    display: flex;
    align-items: flex-end;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--cream);
    text-align: left;
    padding: 20px;
    position: relative;
    overflow: hidden;
    filter: grayscale(0.15);
}

.work-thumb span.ph {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.thumb-1 {
    background: linear-gradient(160deg, #3a2a26 0%, var(--red) 120%);
}

.thumb-2 {
    background: linear-gradient(160deg, #3a2a26 0%, var(--orange) 120%);
}

.thumb-3 {
    background: linear-gradient(160deg, #2a2424 0%, var(--pink) 130%);
}

.thumb-4 {
    background: linear-gradient(160deg, #3a2a26 0%, var(--yellow) 130%);
    color: var(--black);
}

.thumb-5 {
    background: linear-gradient(160deg, #2a2424 0%, var(--red) 130%);
}

.thumb-6 {
    background: linear-gradient(160deg, #2a2424 0%, var(--orange) 130%);
}

.work-info {
    padding: 22px;
}

.work-info .tag-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.work-info .chip {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    border: 1px solid rgba(255, 247, 240, 0.2);
    color: var(--cream-soft);
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.work-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--cream);
}

.work-info p {
    font-size: 0.85rem;
    color: var(--cream-soft);
}

/* ===== Process ===== */
.process {
    background: #ff4c4c;
}

.process .tag {
    color: var(--yellow);
}

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

.process-card {
    border: 1px solid rgba(255, 247, 240, 0.08);
    border-radius: var(--radius);
    padding: 32px 26px;
    position: relative;
    transition: border-color .25s ease, transform .25s ease;
    background: var(--black-2);
}

.process-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
}

.process-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    margin-bottom: 18px;
}

.process-card:nth-child(1) .process-num {
    color: var(--red);
}

.process-card:nth-child(2) .process-num {
    color: var(--orange);
}

.process-card:nth-child(3) .process-num {
    color: var(--yellow);
}

.process-card:nth-child(4) .process-num {
    color: var(--pink);
}

.process-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--cream);
}

.process-card p {
    font-size: 0.9rem;
    color: var(--cream-soft);
}

/* ===== Why us / Testimonials ===== */
.why {
    background: var(--black-2);
}

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

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--black);
    border: 1px solid rgba(255, 247, 240, 0.07);
    border-radius: 18px;
    padding: 22px 24px;
    transition: border-color .25s ease;
}

.why-list li:hover {
    border-color: var(--orange);
}

.why-list .num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--black);
}

.why-list li:nth-child(1) .num {
    background: var(--orange);
}

.why-list li:nth-child(2) .num {
    background: var(--pink);
}

.why-list li:nth-child(3) .num {
    background: var(--yellow);
}

.why-list li:nth-child(4) .num {
    background: var(--red);
    color: var(--cream);
}

.why-list h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--cream);
}

.why-list p {
    font-size: 0.9rem;
    color: var(--cream-soft);
}

.testimonial-card {
    background: linear-gradient(160deg, var(--red), var(--orange) 80%);
    color: var(--cream);
    border-radius: var(--radius);
    padding: 44px;
    position: relative;
}

.testimonial-card .quote-mark {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 4rem;
    color: var(--black);
    line-height: 1;
    margin-bottom: 10px;
    opacity: .4;
}

.testimonial-card p.quote {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--orange);
    background: var(--black);
}

.testimonial-author h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.8rem;
    opacity: .8;
}

.testimonial-note {
    margin-top: 18px;
    font-size: 0.78rem;
    opacity: .7;
    font-style: italic;
}

/* ===== About Me (last before footer) ===== */
.about {
    position: relative;
    background-image: url('112.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;        /* single column */
    max-width: 600px;
    margin-left: auto;                 /* pushes content to the RIGHT side */
    margin-right: 0;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(14, 11, 11, 0.4) 0%,
        rgba(14, 11, 11, 0.85) 60%
    );
    z-index: 1;
}

/* .about-photo {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1/1.05;
    border-radius: 28px;
    background: linear-gradient(160deg, var(--orange) 0%, var(--red) 60%, var(--black) 130%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    color: var(--cream);
    font-size: 1.2rem;
    text-align: center;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(255, 247, 240, 0.1);
} */

.about-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: var(--cream);
    color: var(--black);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.3;
    border: 2px solid var(--orange);
}

.about-content .tag {
    color: var(--orange);
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
    font-weight: 800;
    color: var(--cream);
}

.about-content p {
    color: var(--cream-soft);
    margin-bottom: 18px;
    font-size: 1rem;
}

.about-skills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.skill-pill {
    border: 1px solid rgba(255, 247, 240, 0.2);
    border-radius: 50px;
    padding: 8px 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--cream);
    transition: border-color .2s ease, color .2s ease;
}

.skill-pill:hover {
    border-color: var(--orange);
    color: var(--orange);
} */

/* Dark overlay on top of the image */
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(14, 11, 11, 0.4) 0%,
        rgba(14, 11, 11, 0.85) 60%
    );
    z-index: 1;
}

/* Push grid above the overlay */
/* .about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
} */


/* ===== CTA strip ===== */
.CAT {
    padding: 110px 0 110px 0;
}
.cta-strip {
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 60%, var(--yellow) 130%);
    color: var(--black);
    text-align: center;
    padding: 90px 6%;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    margin: 0 6%;
    width: auto;
}

.cta-strip h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 18px;
    font-weight: 800;
}

.cta-strip p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: .85;
}

.cta-strip .btn-primary {
    background: var(--black);
    color: var(--cream);
}

.cta-strip .btn-primary:hover {
    transform: translateY(-3px);
}

/* ===== Footer ===== */
footer {
    /* background: #3b3530; */
    background: #3e3a37;
    color: var(--cream);
    padding: 90px 6% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 247, 240, 0.1);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-left .logo-wrap {
    margin-bottom: 18px;
}

.footer-left p {
    color: var(--cream-soft);
    max-width: 420px;
    font-size: 0.95rem;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 18px;
    color: var(--orange);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 0.92rem;
    color: var(--cream-soft);
    transition: color .2s ease, padding-left .2s ease;
}

.footer-col ul li a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.social-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-row a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 247, 240, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.social-row a:hover {
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-color: transparent;
    transform: translateY(-3px);
}

.social-row svg {
    width: 18px;
    height: 18px;
    fill: var(--cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--cream-soft);
}

.footer-bottom a {
    color: var(--cream-soft);
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* ===== Reveal animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* ===== Responsive ===== */
@media (max-width: 980px) {
    .hero-headline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-tags {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .services-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .about-visual {
        order: -1;
    }

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

    .trust-strip {
        margin: -40px 6% 0;
    }
}

@media (max-width: 720px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: var(--black-2);
        background: #000000e6;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 28px;
        transition: right .35s ease;
        border-left: 1px solid rgba(255, 247, 240, 0.1);
    }

    nav.open {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .service-grid,
    .work-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .hero {
        padding: 120px 6% 50px;
        border-radius: 0 0 28px 28px;
    }

    section {
        padding: 70px 6%;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-strip {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 24px;
    }

    .trust-items {
        gap: 24px;
    }

    .cta-strip {
        border-radius: 24px;
    }
}