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

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

html {
    scroll-behavior: smooth;
}

body {
    background: #10110e;
    color: #e9e4d2;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}


/* =========================================
   VARIABLES
========================================= */

:root {
    --background: #10110e;
    --panel: #181a15;
    --panel-light: #20231c;
    --text: #e9e4d2;
    --muted: #969688;
    --accent: #d5b45a;
    --border: #38392f;
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

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

    padding: 18px 6%;

    background: rgba(16, 17, 14, 0.95);
    border-bottom: 1px solid var(--border);
}

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

    font-weight: bold;
    letter-spacing: 2px;
}

.logo-symbol {
    color: var(--accent);
    font-size: 20px;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: var(--muted);
    text-decoration: none;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;

    transition: 0.2s;
}

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


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

.hero {
    min-height: 85vh;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    align-items: center;

    padding: 80px 8%;

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

.eyebrow {
    color: var(--accent);

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 90px);
    line-height: 0.95;
    letter-spacing: -3px;

    margin-bottom: 30px;
}

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

    color: var(--muted);

    font-size: 17px;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


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

.button {
    display: inline-block;

    padding: 13px 20px;

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

    text-decoration: none;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;

    transition: 0.2s;
}

.primary {
    background: var(--accent);
    color: #111;
}

.primary:hover {
    background: transparent;
    color: var(--accent);
}

.secondary {
    color: var(--accent);
}

.secondary:hover {
    background: var(--accent);
    color: #111;
}


/* =========================================
   MAP PLACEHOLDER
========================================= */

.hero-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;

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

    text-align: center;

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

    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 30px,
            rgba(213,180,90,0.04) 31px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 30px,
            rgba(213,180,90,0.04) 31px
        );

    color: var(--accent);

    font-size: 13px;
    letter-spacing: 2px;
}


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

.section {
    padding: 100px 8%;
    border-bottom: 1px solid var(--border);
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 60px;
}

.section-heading span {
    color: var(--accent);
    font-family: monospace;
}

.section-heading h2 {
    font-size: 30px;
    letter-spacing: 2px;
}


/* =========================================
   ABOUT
========================================= */

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

.about h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

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

.info-card {
    border: 1px solid var(--border);
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 20px;

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

.info-row:last-child {
    border-bottom: none;
}

.info-row span {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 1px;
}

.info-row strong {
    font-size: 12px;
    text-align: right;
}

.available {
    color: var(--accent);
}


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

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

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

    display: flex;
    flex-direction: column;

    padding: 25px;

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

    transition: 0.2s;
}

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

.service-number {
    color: var(--accent);
    font-family: monospace;
    margin-bottom: 50px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
}

.price {
    margin-top: auto;

    color: var(--accent);

    font-family: monospace;
    font-weight: bold;
}


/* =========================================
   PRICING
========================================= */

.pricing-table {
    border-top: 1px solid var(--border);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 180px;

    padding: 20px;

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

.pricing-row.header {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 2px;
}

.pricing-row strong {
    color: var(--accent);
}

.pricing-note {
    color: var(--muted);
    font-size: 12px;
    margin-top: 20px;
}


/* =========================================
   PORTFOLIO
========================================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.portfolio-item {
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--border);
}

.portfolio-item img {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 10;

    object-fit: cover;

    transition: 0.3s;
}

.portfolio-item:hover img {
    transform: scale(1.03);
}

.portfolio-label {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 15px 18px;
}

.portfolio-label span {
    color: var(--accent);
    font-family: monospace;
    font-size: 12px;
}

.portfolio-label strong {
    font-size: 12px;
}


/* =========================================
   PROCESS
========================================= */

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

.process-step {
    padding: 25px;

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

.process-step > span {
    color: var(--accent);
    font-family: monospace;
}

.process-step h3 {
    margin: 25px 0 15px;
    font-size: 16px;
}

.process-step p {
    color: var(--muted);
    font-size: 14px;
}


/* =========================================
   ORDER
========================================= */

.order-section {
    text-align: center;
}

.order-section .section-heading {
    justify-content: center;
}

.order-box {
    max-width: 700px;
    margin: auto;

    padding: 60px 30px;

    border: 1px solid var(--border);
    background: var(--panel);
}

.order-box h3 {
    font-size: 35px;
    margin-bottom: 15px;
}

.order-box p {
    color: var(--muted);
    margin-bottom: 30px;
}


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

footer {
    padding: 50px 8%;

    text-align: center;

    color: var(--muted);
}

.footer-logo {
    color: var(--text);

    font-weight: bold;
    letter-spacing: 3px;

    margin-bottom: 15px;
}

.footer-small {
    margin-top: 10px;

    font-size: 10px;
    letter-spacing: 2px;
}


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

@media (max-width: 900px) {

    .site-header {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }

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

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

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

}


@media (max-width: 600px) {

    .hero h1 {
        font-size: 48px;
    }

    .section {
        padding: 70px 5%;
    }

    .services-grid,
    .portfolio-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .pricing-row {
        grid-template-columns: 1fr 100px;
    }

}