:root {
    --color-bg: #f5efe8;
    --color-surface: #fffaf5;
    --color-text: #2a211c;
    --color-text-muted: #7a6b61;
    --color-border: #dccbbb;
    --color-accent: #8b684d;
    --color-accent-hover: #73543d;
}

/* Atelier Garibov classic redesign */

.ag-hero {
    min-height: 620px;
    background:
        linear-gradient(rgba(31, 24, 20, 0.42), rgba(31, 24, 20, 0.5)),
        url("/public-assets/img/brand/brand-01.jpg") center/cover no-repeat;
    color: #fffaf5;
    display: flex;
    align-items: center;
}

.ag-hero-overlay {
    width: 100%;
    padding: 96px 0;
}

.ag-hero-content {
    max-width: 760px;
    text-align: center;
}

.ag-hero-content h1 {
    margin: 16px auto;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.ag-hero-content p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 250, 245, 0.86);
}

.ag-hero .hero-actions {
    justify-content: center;
    margin-top: 28px;
}

.ag-about-section,
.ag-services-section,
.ag-gallery-section,
.ag-request-section {
    padding: 72px 0;
    background:
        radial-gradient(circle at top left, rgba(139, 104, 77, 0.08), transparent 34%),
        var(--color-bg);
}

.ag-about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.ag-about-text h2,
.ag-section-title h2,
.ag-request-content h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ag-about-text p,
.ag-request-content p {
    color: var(--color-text-muted);
    line-height: 1.9;
    font-size: 17px;
}

.ag-about-image {
    border: 1px solid var(--color-border);
    padding: 10px;
    background: var(--color-surface);
    box-shadow: 0 22px 50px rgba(42, 33, 28, 0.09);
}

.ag-about-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.ag-section-title {
    text-align: center;
    margin-bottom: 34px;
}

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

.ag-service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: 0 16px 36px rgba(42, 33, 28, 0.07);
    text-align: center;
}

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

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

.ag-service-card h3 {
    margin: 0 0 12px;
    font-size: 25px;
    font-weight: 400;
}

.ag-service-card p {
    margin: 0 0 18px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.ag-service-card a {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    text-decoration: none;
    padding: 11px 18px;
    border: 1px solid var(--color-border);
}

.ag-benefits-section {
    padding: 70px 0;
    color: #fffaf5;
    background:
        linear-gradient(rgba(31, 24, 20, 0.92), rgba(31, 24, 20, 0.92)),
        url("/public-assets/img/brand/brand-06.jpg") center/cover no-repeat;
}

.ag-section-title-light h2 {
    color: #fffaf5;
}

.ag-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    text-align: center;
}

.ag-benefit-icon {
    font-size: 38px;
    margin-bottom: 14px;
    color: #d8c4b0;
}

.ag-benefit-item h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 400;
}

.ag-benefit-item p {
    margin: 0;
    color: rgba(255, 250, 245, 0.72);
    line-height: 1.7;
}

.ag-gallery-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr 1fr;
    gap: 12px;
    align-items: stretch;
}

.ag-gallery-row img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border: 1px solid var(--color-border);
}

.ag-gallery-action {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.ag-request-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.ag-request-symbol {
    font-size: 96px;
    line-height: 1;
    font-style: italic;
    color: var(--color-accent);
}

.ag-request-brand {
    text-align: center;
}

@media (max-width: 980px) {
    .ag-about-grid,
    .ag-services-grid,
    .ag-benefits-grid,
    .ag-request-grid {
        grid-template-columns: 1fr;
    }

    .ag-gallery-row {
        grid-template-columns: 1fr 1fr;
    }

    .ag-hero {
        min-height: 520px;
    }
}

@media (max-width: 640px) {
    .ag-hero {
        min-height: 480px;
    }

    .ag-hero-overlay {
        padding: 70px 0;
    }

    .ag-about-section,
    .ag-services-section,
    .ag-gallery-section,
    .ag-request-section {
        padding: 46px 0;
    }

    .ag-gallery-row {
        grid-template-columns: 1fr;
    }

    .ag-gallery-row img,
    .ag-service-card img,
    .ag-about-image img {
        height: 240px;
    }

    .ag-benefits-grid {
        gap: 34px;
    }
}

/* Header / logo / navigation polish */

.site-header {
    padding: 8px 0;
    background: rgba(250, 244, 236, 0.97);
    border-bottom: 1px solid rgba(139, 104, 77, 0.22);
}

.site-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo-image-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    min-width: 120px;
    height: 64px;
    overflow: visible;
    text-decoration: none;
}

.logo-image-link img {
    display: block;
    width: auto;
    height: 58px;
    max-width: none;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    flex-wrap: nowrap;
}

.site-nav a {
    position: relative;
    font-size: 13px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    color: #2a211c;
    opacity: 0.86;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: #8b684d;
    transition: width 0.25s ease;
}

.site-nav a:hover {
    color: #8b684d;
    opacity: 1;
}

.site-nav a:hover::after {
    width: 100%;
}

/* Mobile burger menu */

.site-menu-toggle {
    display: none;
}

@media (max-width: 800px) {
    .site-header-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .logo-image-link {
        width: 82px;
        min-width: 82px;
    }

    .site-menu-toggle {
        display: inline-flex;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(139, 104, 77, 0.28);
        border-radius: 999px;
        background: rgba(255, 250, 245, 0.72);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .site-menu-toggle span {
        width: 18px;
        height: 1px;
        background: #2a211c;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .site-menu-toggle.is-active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .site-menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        width: 100%;
        padding: 18px;
        border: 1px solid rgba(139, 104, 77, 0.22);
        background: rgba(250, 244, 236, 0.98);
        box-shadow: 0 20px 50px rgba(42, 33, 28, 0.12);
        z-index: 50;
    }

    .site-nav.is-open {
        display: grid;
        gap: 14px;
    }

    .site-nav a {
        font-size: 13px;
        letter-spacing: 0.12em;
        padding: 8px 0;
    }
}

.ag-request-logo {
    width: 120px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
/* Hero secondary button fix */

.ag-hero .site-btn-light {
    color: #fffaf5;
    border-color: rgba(255, 250, 245, 0.72);
}

.ag-hero .site-btn-light:hover {
    background: rgba(255, 250, 245, 0.92);
    color: var(--color-text);
    border-color: rgba(255, 250, 245, 0.92);
}