﻿:root {
    --ink: #101418;
    --muted: #66717e;
    --line: #e4e0d8;
    --paper: #faf8f3;
    --white: #ffffff;
    --gold: #c79a31;
    --gold-dark: #8a6518;
    --green: #1f7a4c;
    --charcoal: #17191d;
    --shadow: 0 22px 70px rgba(16, 20, 24, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
}

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

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

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 248, 243, 0.94);
    border-bottom: 1px solid rgba(16, 20, 24, 0.08);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--ink);
}

.logo-mark {
    position: relative;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(199, 154, 49, 0.55);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(199, 154, 49, 0.18), rgba(255, 255, 255, 0.88)),
        var(--white);
    box-shadow: 0 12px 28px rgba(16, 20, 24, 0.12);
}

.logo-mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(16, 20, 24, 0.1);
    border-radius: 8px;
}

.logo-mark svg {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    fill: none;
    stroke: var(--charcoal);
    stroke-width: 3.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logo strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.32rem;
    line-height: 0.96;
    letter-spacing: 0;
}

.logo strong span {
    color: var(--gold-dark);
}

.logo small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #343a40;
    font-size: 0.94rem;
    font-weight: 700;
}

.site-nav a {
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--gold-dark);
}

.nav-cta  {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--gold);
    color:  #16130a;
    padding: 0 18px;
    
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    font-size: 1.1rem;
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 14, 18, 0.9) 0%, rgba(12, 14, 18, 0.64) 46%, rgba(12, 14, 18, 0.2) 100%),
        url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1920&q=85") center/cover;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: end;
    gap: 64px;
    padding: 150px 0 70px;
}

.hero-copy {
    max-width: 740px;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.05;
}

h1 {
    max-width: 850px;
    font-size: clamp(3.1rem, 4.3vw, 6.6rem);
}

h2 {
    font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
    line-height: 1.2;
}

.hero-text {
    max-width: 620px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 0 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: var(--gold);
    color: #16130a;
    box-shadow: 0 14px 30px rgba(199, 154, 49, 0.28);
}

.btn-secondary {
    background: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #16130a;
}


.hero-panel {
    display: grid;
    gap: 14px;
}

.hero-panel div {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 20px;
    backdrop-filter: blur(12px);
}

.stat {
    display: block;
    color: var(--gold);
    font-size: 1.65rem;
    font-weight: 800;
}

.hero-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.intro {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 52px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.intro p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.section {
    padding: 96px 0;
}

.section-head {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-head.split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    font-weight: 800;
    white-space: nowrap;
}

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

.service-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 36px rgba(16, 20, 24, 0.06);
}

.service-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-card div {
    padding: 22px;
}

.service-card i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 18px;
    background: #f3ead5;
    color: var(--gold-dark);
}

.service-card h3,
.project-grid h3,
.timeline h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.12rem;
}

.service-card p,
.project-grid p,
.timeline p {
    color: var(--muted);
    font-size: 0.95rem;
}

.projects {
    background: #f2efe7;
}

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

.project-grid article {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 28px;
}

.project-grid span {
    margin-bottom: auto;
    color: var(--gold);
    font-size: 2.5rem;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
}

.process {
    background: var(--white);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.timeline div {
    min-height: 240px;
    padding: 28px;
    border-right: 1px solid var(--line);
}

.timeline div:last-child {
    border-right: 0;
}

.timeline span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 52px;
    background: var(--ink);
    color: var(--gold);
    font-weight: 800;
}

.consultation {
    padding: 96px 0;
    background:
        linear-gradient(90deg, rgba(23, 25, 29, 0.96), rgba(23, 25, 29, 0.86)),
        url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1800&q=85") center/cover;
    color: var(--white);
}

.consultation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
    align-items: center;
}

.consultation p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 18px;
}

.quick-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    backdrop-filter: blur(14px);
}

.quick-form label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    font-weight: 800;
}

.quick-form label:nth-child(4),
.quick-form button,
.form-note {
    grid-column: 1 / -1;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font: inherit;
    min-height: 48px;
    padding: 12px 14px;
    outline: none;
}

.quick-form textarea {
    resize: vertical;
}

.form-note {
    min-height: 22px;
    margin: 0 !important;
    color: #f5d989 !important;
    font-size: 0.92rem;
}

.site-footer {
    background: #0e1013;
    color: var(--white);
    padding: 68px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.8fr;
    gap: 54px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 18px;
}

.footer-logo .logo-mark {
    background:
        linear-gradient(135deg, rgba(199, 154, 49, 0.25), rgba(255, 255, 255, 0.06)),
        #17191d;
    border-color: rgba(199, 154, 49, 0.7);
    box-shadow: none;
}

.footer-logo .logo-mark::after {
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-logo .logo-mark svg {
    stroke: var(--gold);
}

.footer-logo small {
    color: rgba(255, 255, 255, 0.58);
}

.footer-logo strong span {
    color: var(--gold);
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
    margin-bottom: 16px;
}

.site-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    word-break: break-word;
}

.site-footer i {
    color: var(--gold);
}

.copyright {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.9rem;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    box-shadow: var(--shadow);
    font-size: 1.7rem;
}


.ratings {
    background: var(--white);
}

.rating-total {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 280px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 18px 20px;
}

.rating-total span {
    color: var(--gold-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.rating-total strong,
.review-stars {
    color: var(--gold);
}

.rating-total p {
    color: var(--muted);
    font-size: 0.92rem;
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.rating-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 26px;
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 16px;
}

.rating-card p {
    color: var(--muted);
    margin-bottom: 20px;
}

.rating-card strong,
.rating-card span {
    display: block;
}

.rating-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.related-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.related-gallery img {
    width: 100%;
    min-height: 220px;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 12px 36px rgba(16, 20, 24, 0.08);
}

.related-gallery img:first-child,
.related-gallery img:nth-child() {
    grid-column: span 2;
}
@media (max-width: 1040px) {
    .service-grid,
    .rating-grid,
    .related-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .timeline div:nth-child(2) {
        border-right: 0;
    }

    .timeline div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 30px, 1160px);
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .site-nav {
        position: absolute;
        top: 78px;
        left: 15px;
        right: 15px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        padding: 10px;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 14px;
    }

    .nav-cta {
        justify-content: center;
        margin-top: 6px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid,
    .intro-grid,
    .consultation-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 34px;
        padding: 128px 0 50px;
    }

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

    .section,
    .consultation {
        padding: 72px 0;
    }

    .section-head.split {
        align-items: start;
        flex-direction: column;
    }

    .rating-total {
        align-self: stretch;
    }

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

    .copyright {
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    h1 {
        font-size: 3rem;
    }

    .service-grid,
    .rating-grid,
    .related-gallery,
    .timeline,
    .quick-form {
        grid-template-columns: 1fr;
    }

    .related-gallery img:first-child,
    .related-gallery img:nth-child(4) {
        grid-column: auto;
    }

    .timeline div,
    .timeline div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .timeline div:last-child {
        border-bottom: 0;
    }

    .quick-form label:nth-child(4),
    .quick-form button,
    .form-note {
        grid-column: auto;
    }

    .hero-actions,
    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}


