﻿:root {
    --bg: #f7f3ee;
    --bg-alt: #efe7dc;
    --ink: #1f1c18;
    --muted: #6f675f;
    --accent: #8b6b4f;
    --accent-dark: #6d503a;
    --card: #ffffff;
    --shadow: 0 20px 60px rgba(31, 28, 24, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 20% 20%, #ffffff 0%, #f5efe6 45%, #efe7dc 100%);
    line-height: 1.6;
}

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

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

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.page {
    min-height: 60vh;
}

.section {
    padding: 70px 0;
}

.section-muted {
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0));
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 12px;
}

h1 {
    font-size: clamp(2.2rem, 3vw + 1.5rem, 3.6rem);
}

h2 {
    font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
}

h3 {
    font-size: 1.25rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 243, 238, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.site-nav {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--ink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--muted);
    transition: all 0.2s ease;
}

.social-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.social-label {
    line-height: 1;
}

.social:hover {
    color: var(--ink);
    border-color: var(--accent);
}

.burger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #fff;
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease;
}

.hero {
    position: relative;
    padding: 140px 0 120px;
    background: url('/assets/projects/hero.jpg') center/cover no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(18, 14, 10, 0.72), rgba(51, 36, 24, 0.45));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-ghost {
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--accent-dark);
    background: transparent;
}

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

.hero .btn-ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero .btn-ghost:hover {
    border-color: #fff;
    color: #fff;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-weight: 600;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.contact-card {
    background: var(--card);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.card-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.card {
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

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

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card--large img {
    height: 320px;
}

.card-body {
    padding: 18px;
}

.card--large .card-body {
    padding: 24px;
}

.card--large h3 {
    font-size: 1.4rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.9rem;
}

.card--large .card-meta {
    font-size: 1rem;
}

.card-link {
    display: block;
}

.card-text {
    margin: 12px 0 0;
    color: var(--muted);
}

.ready-slider {
    position: relative;
    width: min(771px, 92vw);
    height: min(771px, 92vw);
    margin: 0 auto;
}

.ready-project {
    position: relative;
    width: min(771px, 92vw);
    height: min(771px, 92vw);
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}

.ready-project__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ready-project__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    color: #fff;
}

.ready-project__caption h3 {
    margin: 0;
    font-size: 1.4rem;
}

.slider-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow);
    background: #fff;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    color: #fff;
}

.slider-caption h3 {
    margin: 0;
    font-size: 1.4rem;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button--prev {
    left: 16px;
}

.slider-button--next {
    right: 16px;
}

.company-list {
    display: grid;
    gap: 18px;
}

.company-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.company-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #d8b99b, #8b6b4f);
    flex-shrink: 0;
    margin-top: 4px;
}

.company-item p {
    margin: 0;
}

.info-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px 32px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.info-card h2 {
    margin-bottom: 10px;
}

.info-card p {
    margin: 0 0 14px;
    color: var(--muted);
}

.info-list {
    margin: 0 0 16px 18px;
    color: var(--muted);
    display: grid;
    gap: 6px;
}

.info-note {
    margin: 0;
    color: var(--accent-dark);
    font-weight: 600;
}

.spec-list {
    display: grid;
    gap: 16px;
}

.spec-label {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.media-list {
    display: grid;
    gap: 12px;
}

.media-item {
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: var(--accent-dark);
    font-weight: 600;
}

.page-hero {
    padding: 80px 0 40px;
}

.page-hero-media {
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.page-hero-media img {
    width: 100%;
    height: clamp(220px, 45vw, 420px);
    object-fit: cover;
}

.map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 16px;
    margin-top: 12px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-family: inherit;
}

.contact-form .is-invalid {
    border-color: #b74c36;
    box-shadow: 0 0 0 2px rgba(183, 76, 54, 0.15);
}

.form-hint {
    font-size: 0.85rem;
    color: var(--accent-dark);
    min-height: 18px;
}

.load-state,
.end-state {
    text-align: center;
    padding: 18px 0 0;
    color: var(--muted);
}

.load-state {
    display: none;
}

.end-state {
    display: none;
}

.site-footer {
    background: #1f1c18;
    color: #f2e9dd;
    padding: 50px 0 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    margin-top: 24px;
    font-size: 0.85rem;
    color: rgba(242, 233, 221, 0.6);
}

@media (max-width: 900px) {
    .site-nav {
        position: absolute;
        top: 70px;
        right: 4%;
        flex-direction: column;
        background: #fff;
        padding: 18px 22px;
        border-radius: 16px;
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .burger {
        display: inline-flex;
    }

    .header-actions .socials {
        display: none;
    }

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

    .card-grid-large {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 110px 0 90px;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .card img {
        height: 160px;
    }

    .card--large img {
        height: 240px;
    }

    .slider-button {
        width: 40px;
        height: 40px;
    }
}
.about-text{
    white-space: pre-line;
    line-height: 1.1;
    margin: 0;
    color: var(--muted);
}
