:root {
    --black: #080808;
    --black-2: #101010;
    --black-3: #161616;
    --white: #f4f2ed;
    --muted: #9b9892;
    --muted-2: #696762;
    --line: rgba(255,255,255,.11);
    --red: #a80713;
    --red-bright: #d30d1c;
    --max: 1240px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 85px; }

body {
    background: var(--black);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; }

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

button { font: inherit; }

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

.section { padding: 125px 0; }

.section-kicker {
    display: inline-block;
    color: #77746e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.8px;
}

em {
    color: #77736d;
    font-style: normal;
}

/* NAV */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(8,8,8,.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav-wrap {
    width: min(92%, 1340px);
    height: 82px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    position: relative;
    display: grid;
    grid-template-columns: 35px auto;
    grid-template-rows: 19px 12px;
    column-gap: 10px;
    align-items: center;
    width: max-content;
}

.brand-mark {
    grid-row: 1 / 3;
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid #777;
    font-family: Oswald, sans-serif;
    font-size: 20px;
}

.brand-text {
    font-family: Oswald, sans-serif;
    font-size: 17px;
    letter-spacing: 2.5px;
    font-weight: 600;
}

.brand-text span { color: #777; }

.brand small {
    font-size: 7px;
    color: #777;
    letter-spacing: 2px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    color: #aaa7a1;
    font-size: 13px;
}

.desktop-nav a { transition: color .25s ease; }

.desktop-nav a:hover { color: white; }

.desktop-nav .nav-cta {
    color: white;
    border: 1px solid rgba(255,255,255,.35);
    padding: 12px 18px;
}

.menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    margin: 6px auto;
    background: white;
    transition: .3s;
}

.mobile-nav {
    display: none;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 15px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.btn span { transition: transform .25s ease; }

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

.btn:hover span { transform: translate(4px, -3px); }

.btn-red {
    background: var(--red);
    color: white;
}

.btn-red:hover { background: var(--red-bright); }

.btn-ghost {
    border: 1px solid rgba(255,255,255,.22);
    color: #ddd;
}

.btn-ghost:hover { border-color: rgba(255,255,255,.5); }

.btn-light {
    background: var(--white);
    color: #111;
}

.btn-large { padding: 18px 27px; }

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 145px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 45%, rgba(120,120,120,.12), transparent 28%),
        #080808;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 85px 85px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 80px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #99958e;
    text-transform: uppercase;
    letter-spacing: 2.3px;
    font-size: 10px;
    font-weight: 600;
}

.eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red-bright);
    box-shadow: 0 0 16px rgba(211,13,28,.7);
}

.hero h1 {
    margin-top: 24px;
    font-family: Oswald, sans-serif;
    font-size: clamp(64px, 8vw, 112px);
    line-height: .88;
    letter-spacing: -3px;
    font-weight: 700;
}

.hero h1 em {
    color: #aaa49b;
    text-shadow: 0 0 40px rgba(255,255,255,.08);
}

.hero-lead {
    max-width: 580px;
    margin-top: 30px;
    color: #98958f;
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 35px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-top: 55px;
}

.hero-meta div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-meta strong {
    font-family: Oswald, sans-serif;
    font-size: 22px;
}

.hero-meta span {
    max-width: 120px;
    color: #66635e;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 8px;
    line-height: 1.4;
}

.hero-meta i {
    width: 1px;
    height: 35px;
    background: #30302e;
}

.hero-art {
    position: relative;
}

.hero-frame {
    position: relative;
    max-width: 590px;
    margin-left: auto;
    border: 1px solid rgba(255,255,255,.16);
    padding: 9px;
    transform: rotate(1.5deg);
    box-shadow: 0 40px 100px rgba(0,0,0,.55);
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255,255,255,.13);
    z-index: 1;
    pointer-events: none;
}

.hero-frame img {
    width: 100%;
    height: 610px;
    display: block;
    object-fit: cover;
    filter: saturate(.75) contrast(1.05);
}

.hero-stamp {
    position: absolute;
    right: 30px;
    bottom: 28px;
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    background: rgba(5,5,5,.72);
    backdrop-filter: blur(8px);
    transform: rotate(-8deg);
    text-align: center;
}

.hero-stamp span {
    font-size: 7px;
    letter-spacing: 2px;
    color: #aaa;
}

.hero-stamp strong {
    font-family: Oswald, sans-serif;
    font-size: 20px;
    line-height: .82;
    letter-spacing: 1px;
}

.scroll-cue {
    position: absolute;
    left: 5%;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 8px;
    letter-spacing: 2px;
}

.scroll-cue span {
    width: 50px;
    height: 1px;
    background: #555;
}

/* STRIP */

.intro-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #0d0d0d;
}

.intro-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.intro-strip p {
    padding: 25px 15px;
    border-right: 1px solid var(--line);
    color: #696762;
    text-align: center;
    font-size: 9px;
    letter-spacing: 2px;
}

.intro-strip p:first-child { border-left: 1px solid var(--line); }

.intro-strip strong {
    color: #b3afa8;
    font-weight: 600;
}

/* ABOUT */

.about {
    background: var(--white);
    color: #111;
}

.about-grid {
    display: grid;
    grid-template-columns: .35fr 1fr;
    gap: 80px;
}

.about .section-kicker { color: #77736d; }

.about-main h2 {
    max-width: 850px;
    font-family: Oswald, sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    line-height: .98;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.large-copy {
    max-width: 800px;
    margin-top: 35px;
    font-size: 22px;
    line-height: 1.55;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ccc;
}

.about-columns p {
    color: #5d5a55;
    line-height: 1.8;
}

/* SERVICES */

.services { background: #0d0d0d; }

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 65px;
}

.section-heading h2 {
    margin-top: 18px;
    font-family: Oswald, sans-serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .93;
    letter-spacing: -1px;
}

.section-heading > p {
    max-width: 390px;
    color: #77746e;
    line-height: 1.8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #2b2b2b;
    background: #2b2b2b;
    gap: 1px;
}

.service-card {
    position: relative;
    min-height: 350px;
    padding: 35px;
    background: #101010;
    transition: background .3s ease, transform .3s ease;
}

.service-card:hover {
    background: #171717;
    transform: translateY(-4px);
}

.service-no {
    color: #5f5c57;
    font-size: 9px;
    letter-spacing: 2px;
}

.service-icon {
    margin-top: 65px;
    color: #aaa59c;
    font-size: 28px;
}

.service-card h3 {
    margin-top: 25px;
    font-family: Oswald, sans-serif;
    font-size: 27px;
    text-transform: uppercase;
}

.service-card p {
    margin-top: 12px;
    color: #706d67;
    font-size: 13px;
    line-height: 1.7;
}

/* GALLERY */

.gallery { background: #080808; }

.gallery-heading { margin-bottom: 50px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 250px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: #151515;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease, filter .45s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65), transparent 55%);
    opacity: .25;
    transition: opacity .35s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(.62);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item span {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 16px;
    color: white;
    font-size: 9px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(8px);
    transition: .3s ease;
}

.gallery-item:hover span {
    opacity: 1;
    transform: translateY(0);
}

.gallery-tall { grid-row: span 2; }

.gallery-wide { grid-column: span 2; }

/* FEATURE */

.feature-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    background: #151515;
}

.feature-image {
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(.75);
}

.feature-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 10%;
}

.feature-copy h2 {
    margin-top: 20px;
    font-family: Oswald, sans-serif;
    font-size: clamp(50px, 6vw, 82px);
    line-height: .93;
    text-transform: uppercase;
}

.feature-copy p {
    max-width: 500px;
    margin: 30px 0;
    color: #807d77;
    line-height: 1.8;
}

/* PRICING */

.pricing { background: #efede7; color: #111; }

.pricing .section-kicker { color: #77736d; }

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 520px;
    align-items: center;
    gap: 100px;
}

.pricing h2 {
    margin-top: 20px;
    font-family: Oswald, sans-serif;
    font-size: clamp(55px, 6vw, 86px);
    line-height: .9;
}

.pricing-copy {
    max-width: 540px;
    margin-top: 30px;
    color: #64615b;
    line-height: 1.8;
}

.text-link {
    display: inline-block;
    margin-top: 30px;
    font-weight: 700;
    font-size: 12px;
    border-bottom: 1px solid #888;
    padding-bottom: 5px;
}

.price-card {
    background: #101010;
    color: white;
    padding: 45px;
    box-shadow: 20px 20px 0 #d3d0c8;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #303030;
}

.price-row div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-row span {
    color: #777;
    font-size: 9px;
    letter-spacing: 2px;
}

.price-row strong {
    font-family: Oswald, sans-serif;
    font-size: 45px;
}

.price-row small {
    color: #777;
    font-size: 8px;
    letter-spacing: 1.5px;
}

.price-note {
    margin-top: 30px;
    color: #777;
    font-size: 11px;
    line-height: 1.7;
}

/* STANDARDS */

.standards {
    background: #0d0d0d;
}

.standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.standards h2 {
    max-width: 620px;
    margin-top: 20px;
    font-family: Oswald, sans-serif;
    font-size: clamp(48px, 5vw, 70px);
    line-height: .95;
}

.standards-list {
    border-top: 1px solid #2b2b2b;
}

.standards-list div {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #2b2b2b;
}

.standards-list strong {
    color: #666;
    font-size: 9px;
    letter-spacing: 2px;
}

.standards-list span {
    color: #a09d97;
    font-size: 14px;
}

/* CTA */

.cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 160px 0 130px;
    background: #e5e2db;
    color: #111;
}

.cta-bg {
    position: absolute;
    width: 650px;
    height: 650px;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,.85);
    filter: blur(100px);
}

.cta-inner { position: relative; }

.cta .section-kicker { color: #77736d; }

.cta h2 {
    margin-top: 20px;
    font-family: Oswald, sans-serif;
    font-size: clamp(65px, 9vw, 125px);
    line-height: .82;
}

.cta p {
    max-width: 540px;
    margin: 30px auto;
    color: #65625c;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 55px;
    color: #77736d;
    font-size: 11px;
}

.contact-details a:hover { color: #111; }

/* FOOTER */

footer {
    padding: 65px 0 25px;
    background: #080808;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 60px;
}

.footer-links {
    display: flex;
    gap: 28px;
    color: #777;
    font-size: 11px;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid #202020;
    color: #50504d;
    font-size: 9px;
}

/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 45px;
    background: rgba(0,0,0,.94);
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: min(90vw, 1100px);
    max-height: 90vh;
    object-fit: contain;
}

.lightbox button {
    position: fixed;
    border: 0;
    background: rgba(255,255,255,.08);
    color: white;
    cursor: pointer;
}

.lightbox-close {
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    font-size: 30px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 70px;
    font-size: 40px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* FLOATING WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #1e9e55;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    font-size: 11px;
    font-weight: 800;
    transition: transform .25s ease;
}

.floating-whatsapp:hover { transform: translateY(-4px); }

/* RESPONSIVE */

@media (max-width: 1050px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-art { max-width: 650px; width: 100%; margin: auto; }
    .hero-frame img { height: 550px; }

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

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

    .pricing-layout { grid-template-columns: 1fr; gap: 60px; }
    .price-card { max-width: 600px; }
}

@media (max-width: 750px) {
    .section { padding: 85px 0; }

    .desktop-nav { display: none; }

    .menu-toggle { display: block; }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        background: #0b0b0b;
        transition: max-height .35s ease;
    }

    .mobile-nav.active { max-height: 400px; }

    .mobile-nav a {
        padding: 18px 5%;
        border-top: 1px solid #202020;
        color: #aaa;
        font-size: 13px;
    }

    .hero { padding-top: 125px; }
    .hero h1 { font-size: 67px; }
    .hero-lead { font-size: 14px; }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    .hero-meta {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 40px;
    }

    .hero-meta i { display: none; }

    .hero-frame img { height: 470px; }
    .hero-stamp { width: 90px; height: 90px; right: 20px; bottom: 20px; }
    .hero-stamp strong { font-size: 16px; }

    .intro-strip-grid { grid-template-columns: 1fr 1fr; }
    .intro-strip p { border-bottom: 1px solid var(--line); }

    .about-grid,
    .standards-grid { grid-template-columns: 1fr; gap: 40px; }

    .about-columns { grid-template-columns: 1fr; gap: 25px; }

    .section-heading { display: block; }
    .section-heading > p { margin-top: 25px; }

    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 280px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-wide { grid-column: span 2; }
    .gallery-tall { grid-row: span 1; }

    .feature-banner { grid-template-columns: 1fr; }
    .feature-image { min-height: 500px; }
    .feature-copy { padding: 70px 7%; }

    .price-card { padding: 30px 22px; box-shadow: 10px 10px 0 #d3d0c8; }
    .price-row strong { font-size: 35px; }

    .cta { padding: 105px 0 90px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }

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

    .footer-top { flex-direction: column; align-items: flex-start; gap: 35px; }
    .footer-links { flex-wrap: wrap; }

    .footer-bottom { flex-direction: column; gap: 10px; }

    .lightbox { padding: 20px; }
    .lightbox-prev { left: 5px; }
    .lightbox-next { right: 5px; }
}

@media (max-width: 430px) {
    .hero h1 { font-size: 57px; letter-spacing: -1px; }
    .hero-frame img { height: 390px; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .gallery-wide { grid-column: auto; }

    .gallery-item span {
        opacity: 1;
        transform: none;
    }
}
