* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1d1d1f;
    background: #fff;
}

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

.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.menu,
.footer-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu a,
.footer-menu a {
    color: #111;
    text-decoration: none;
}

.content,
.page-content,
.single-content {
    padding: 50px 0;
}

.post-card {
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}

.post-card h1 {
    margin: 0 0 12px;
    font-size: 32px;
}

.post-card h1 a {
    color: #111;
    text-decoration: none;
}

.entry-content {
    font-size: 18px;
    line-height: 1.65;
}

.post-thumb img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px 0;
}

.site-footer {
    padding: 32px 0;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .menu,
    .footer-menu {
        flex-direction: column;
        gap: 12px;
    }

    .post-card h1 {
        font-size: 26px;
    }
}

:root {
    --az-gold: #c9a45c;
    --az-gold-dark: #ad8337;
    --az-dark: #17130f;
    --az-text: #241f1a;
    --az-white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--az-text);
    background: #fff;
}

.az-header {
    position: relative;
    z-index: 1000;
}

.az-header__hero {
    position: relative;
    min-height: 820px;
    width: 100%;
    background-image: url("../img/header-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.az-header__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.20) 36%, rgba(0,0,0,0.68) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.60) 100%);
}

.az-header__center {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.az-header__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.az-header__logo img {
    display: block;
    height: auto;
    max-width: 100%;
}

.az-header__logo--hero img {
    width: min(390px, 78vw);
    filter: drop-shadow(0 24px 44px rgba(0,0,0,0.45));
}

.az-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.az-header__nav a {
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    transition: color .25s ease, opacity .25s ease;
}

.az-header__nav--hero {
    margin-top: 52px;
    gap: 0;
    padding: 18px 34px;
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 999px;
    background: rgba(12, 10, 8, 0.30);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.az-header__nav--hero a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    padding: 0 24px;
}

.az-header__nav--hero a:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 28px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(201,164,92,0.95) 25%,
        rgba(201,164,92,0.95) 75%,
        transparent 100%
    );
    transform: translateY(-50%);
}

.az-header__nav--hero a:hover {
    color: var(--az-gold);
}

.az-header__bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 45px rgba(0,0,0,0.07);
    backdrop-filter: blur(18px);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .32s ease, opacity .32s ease;
}

.az-header.is-scrolled .az-header__bar {
    transform: translateY(0);
    opacity: 1;
}

.az-header__bar-inner {
    width: min(1480px, calc(100% - 48px));
    min-height: 92px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr 380px;
    align-items: center;
    gap: 34px;
}

.az-header__logo--bar {
    justify-content: flex-start;
}

.az-header__logo--bar img {
    width: 180px;
    height: auto;
}

.az-header__nav--bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.az-header__nav--bar a {
    position: relative;
    color: var(--az-text);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    padding: 0 28px;
    line-height: 1.2;
    transition: color .25s ease;
}

.az-header__nav--bar a:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 34px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(201,164,92,0.95) 24%,
        rgba(201,164,92,0.95) 76%,
        transparent 100%
    );
    transform: translateY(-50%);
}

.az-header__nav--bar a:hover {
    color: var(--az-gold-dark);
}

.az-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
}

/* ===== MESSENGERS ===== */

.az-header__messengers {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px; /* БЛИЖЕ ДРУГ К ДРУГУ */
    padding-right: 20px;
}

.az-header__messengers::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 40px;
    background: rgba(201,164,92,0.6);
    transform: translateY(-50%);
}

/* ИКОНКА */

.az-msg {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: 1px solid rgba(201,164,92,0.9);

    transition: all .35s cubic-bezier(.22,1,.36,1);
}

/* ИЗНАЧАЛЬНО ЦВЕТНАЯ */

.az-msg img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;

    filter: none; /* ВАЖНО: цветные */
    transition: all .35s ease;
}

/* HOVER ПРЕМИУМ */

.az-msg:hover {
    transform: translateY(-4px) scale(1.05);

    background: linear-gradient(
        135deg,
        #d9bb78 0%,
        #c9a45c 40%,
        #a77a2f 100%
    );

    box-shadow:
        0 20px 40px rgba(201,164,92,0.35),
        0 6px 14px rgba(0,0,0,0.1);
}

/* ИКОНКА СТАНОВИТСЯ БЕЛОЙ */

.az-msg:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

/* БЛИК */

.az-msg::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -120%;
    width: 80%;
    height: 240%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.3) 50%,
        transparent 100%
    );
    transform: rotate(25deg);
    opacity: 0;
    transition: all .6s ease;
}

.az-msg:hover::after {
    left: 120%;
    opacity: 1;
}

.az-header__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.az-header__contacts a {
    text-decoration: none;
    line-height: 1.15;
    transition: color .25s ease;
}

.az-header__phone {
    color: var(--az-gold);
    font-size: 20px;
    font-weight: 700;
}

.az-header__mail {
    color: var(--az-dark);
    font-size: 16px;
    font-weight: 400;
}

.az-header__phone:hover,
.az-header__mail:hover {
    color: var(--az-gold-dark);
}

.site-main {
    min-height: 600px;
}

@media (max-width: 1280px) {
    .az-header__bar-inner {
        grid-template-columns: 220px 1fr 340px;
        gap: 24px;
    }

    .az-header__nav--bar a {
        font-size: 15px;
        padding: 0 20px;
    }

    .az-header__logo--bar img {
        width: 160px;
    }

    .az-header__phone {
        font-size: 18px;
    }

    .az-header__mail {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .az-header__bar-inner {
        grid-template-columns: 170px 1fr 120px;
    }

    .az-header__contacts {
        display: none;
    }

    .az-header__right {
        gap: 0;
    }

    .az-header__messengers {
        padding-right: 0;
    }

    .az-header__messengers::after {
        display: none;
    }

    .az-header__nav--bar {
        justify-content: flex-end;
    }

    .az-header__nav--bar a {
        font-size: 14px;
        padding: 0 14px;
    }
}

@media (max-width: 820px) {
    .az-header__hero {
        min-height: 720px;
    }

    .az-header__nav--hero {
        width: 100%;
        max-width: 420px;
        flex-direction: column;
        gap: 0;
        padding: 22px;
        border-radius: 28px;
    }

    .az-header__nav--hero a {
        width: 100%;
        padding: 13px 0;
        font-size: 14px;
        text-align: center;
    }

    .az-header__nav--hero a:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: 0;
        width: 80px;
        height: 1px;
        transform: translateX(50%);
    }

    .az-header__bar-inner {
        width: min(100%, calc(100% - 28px));
        min-height: 76px;
        display: flex;
        justify-content: space-between;
        gap: 18px;
    }

    .az-header__logo--bar img {
        width: 124px;
    }

    .az-header__nav--bar {
        display: none;
    }

    .az-msg {
        width: 40px;
        height: 40px;
    }

    .az-msg img {
        width: 19px;
        height: 19px;
    }
}

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

.az-section-head {
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
}

.az-section-head--left {
    margin-left: 0;
    text-align: left;
}

.az-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #c9a45c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.az-section-head h1,
.az-section-head h2,
.az-split__content h2,
.az-extra-card h2,
.az-contacts h2 {
    margin: 0;
    color: #17130f;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.08;
}

.az-section-head h1 {
    font-size: clamp(42px, 5vw, 76px);
}

.az-section-head h2,
.az-split__content h2,
.az-extra-card h2,
.az-contacts h2 {
    font-size: clamp(34px, 4vw, 58px);
}

.az-section-head p,
.az-split__content p,
.az-extra-card p,
.az-contacts p {
    color: rgba(36,31,26,.72);
    font-size: 18px;
    line-height: 1.7;
}

.az-intro {
    padding: 110px 0 70px;
    background: linear-gradient(180deg, #fff 0%, #faf7ef 100%);
}

.az-feature-grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.az-feature-card {
    position: relative;
    min-height: 310px;
    border-radius: 30px;
    overflow: hidden;
    background: #17130f;
    box-shadow: 0 28px 70px rgba(0,0,0,.12);
}

.az-feature-card--large {
    grid-row: span 2;
    min-height: 650px;
}

.az-feature-card__image {
    position: absolute;
    inset: 0;
}

.az-feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .82;
    transition: transform .8s cubic-bezier(.22,1,.36,1);
}

.az-feature-card:hover .az-feature-card__image img {
    transform: scale(1.055);
}

.az-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.72) 100%);
}

.az-feature-card__content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
}

.az-feature-card__content span {
    color: #c9a45c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.az-feature-card__content h2,
.az-feature-card__content h3 {
    margin: 12px 0 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.12;
}

.az-feature-card__content h2 {
    font-size: clamp(34px, 4vw, 58px);
}

.az-feature-card__content h3 {
    font-size: 30px;
}

.az-feature-card__content p {
    max-width: 560px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.65;
}

.az-capabilities {
    padding: 100px 0;
    background: #fff;
}

.az-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.az-capability {
    padding: 34px;
    border: 1px solid rgba(201,164,92,.22);
    border-radius: 28px;
    background: linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.az-capability:hover {
    transform: translateY(-6px);
    border-color: rgba(201,164,92,.48);
    box-shadow: 0 22px 54px rgba(0,0,0,.08);
}

.az-capability img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 22px;
}

.az-capability h3 {
    margin: 0 0 12px;
    color: #17130f;
    font-size: 22px;
}

.az-capability p {
    margin: 0;
    color: rgba(36,31,26,.68);
    font-size: 16px;
    line-height: 1.65;
}

.az-kitchen,
.az-tasting {
    padding: 110px 0;
}

.az-kitchen {
    background: #17130f;
}

.az-tasting {
    background: #fbf8f1;
}

.az-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.az-split--reverse .az-split__image {
    order: 2;
}

.az-split__image {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 560px;
    box-shadow: 0 34px 90px rgba(0,0,0,.18);
}

.az-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.az-kitchen .az-split__content h2,
.az-kitchen .az-split__content p {
    color: #fff;
}

.az-kitchen .az-split__content p {
    color: rgba(255,255,255,.74);
}

.az-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 34px;
}

.az-tags span {
    padding: 10px 15px;
    border: 1px solid rgba(201,164,92,.34);
    border-radius: 999px;
    color: #c9a45c;
    font-size: 14px;
}

.az-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid #c9a45c;
    border-radius: 999px;
    background: linear-gradient(135deg, #d9bb78 0%, #c9a45c 44%, #a77a2f 100%);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(201,164,92,.28);
    transition: transform .3s ease, box-shadow .3s ease;
}

.az-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(201,164,92,.38);
}

.az-btn--light {
    background: #fff;
    color: #17130f;
    box-shadow: none;
}

.az-note {
    margin-top: 30px;
    padding: 24px 28px;
    border-left: 3px solid #c9a45c;
    background: #fff;
    color: rgba(36,31,26,.76);
    font-size: 17px;
    line-height: 1.65;
}

.az-extra {
    padding: 100px 0;
    background: #fff;
}

.az-extra__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.az-extra-card {
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(201,164,92,.18);
    background: #fbf8f1;
    box-shadow: 0 22px 64px rgba(0,0,0,.07);
}

.az-extra-card img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.az-extra-card div {
    padding: 36px;
}

.az-gallery-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #fbf8f1 0%, #fff 100%);
}

.az-gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    grid-auto-rows: 250px;
    gap: 18px;
}

.az-gallery__item {
    position: relative;
    display: block;
    border-radius: 26px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.az-gallery__item:nth-child(1) {
    grid-row: span 2;
}

.az-gallery__item:nth-child(4) {
    grid-column: span 2;
}

.az-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22,1,.36,1);
}

.az-gallery__item:hover img {
    transform: scale(1.06);
}

.az-gallery__item::after {
    content: "Открыть";
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    color: #17130f;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: .3s ease;
}

.az-gallery__item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.az-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0,0,0,.86);
}

.az-lightbox.is-active {
    display: flex;
}

.az-lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 86vh;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.az-lightbox__close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.az-price {
    padding: 110px 0;
    background: #17130f;
}

.az-price .az-section-head h2,
.az-price .az-section-head p {
    color: #fff;
}

.az-price .az-section-head p {
    color: rgba(255,255,255,.7);
}

.az-price__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.az-price-card {
    padding: 38px;
    border: 1px solid rgba(201,164,92,.26);
    border-radius: 30px;
    background: rgba(255,255,255,.06);
    color: #fff;
}

.az-price-card--main {
    background: linear-gradient(180deg, rgba(201,164,92,.24) 0%, rgba(255,255,255,.07) 100%);
    transform: translateY(-14px);
}

.az-price-card h3 {
    margin: 0 0 20px;
    font-size: 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.az-price-card__price {
    margin-bottom: 22px;
    color: #c9a45c;
    font-size: 34px;
    font-weight: 700;
}

.az-price-card p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.65;
}

.az-contacts {
    padding: 100px 0;
    background: #fbf8f1;
}

.az-contacts__box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 56px;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 28px 76px rgba(0,0,0,.08);
}

.az-contacts__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .az-feature-grid,
    .az-split,
    .az-extra__grid,
    .az-price__grid,
    .az-contacts__box {
        grid-template-columns: 1fr;
    }

    .az-feature-card--large {
        min-height: 520px;
    }

    .az-split--reverse .az-split__image {
        order: 0;
    }

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

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

    .az-price-card--main {
        transform: none;
    }
}

@media (max-width: 640px) {
    .az-container {
        width: min(100%, calc(100% - 28px));
    }

    .az-intro,
    .az-capabilities,
    .az-kitchen,
    .az-tasting,
    .az-extra,
    .az-gallery-section,
    .az-price,
    .az-contacts {
        padding: 72px 0;
    }

    .az-section-head {
        margin-bottom: 34px;
    }

    .az-feature-card,
    .az-feature-card--large {
        min-height: 390px;
        border-radius: 24px;
    }

    .az-feature-card__content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .az-feature-card__content h3 {
        font-size: 25px;
    }

    .az-capabilities__grid,
    .az-gallery {
        grid-template-columns: 1fr;
    }

    .az-gallery {
        grid-auto-rows: 260px;
    }

    .az-gallery__item:nth-child(1),
    .az-gallery__item:nth-child(4) {
        grid-row: auto;
        grid-column: auto;
    }

    .az-split__image {
        min-height: 360px;
        border-radius: 26px;
    }

    .az-extra-card img {
        height: 260px;
    }

    .az-extra-card div,
    .az-capability,
    .az-price-card,
    .az-contacts__box {
        padding: 28px;
    }

    .az-contacts__actions {
        flex-direction: column;
        align-items: stretch;
    }
}
/* =========================
   FINAL REFINEMENTS
   contacts, messenger hover, premium reveal animations
   ========================= */

.az-section-head--wide {
    max-width: 1120px;
}

.az-section-head--wide h1 {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.az-section-head--wide p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* Stable premium messenger hover without twitching */
.az-header__messengers {
    gap: 6px;
}

.az-msg {
    position: relative;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    border: 1px solid rgba(201,164,92,.9);
    background: rgba(255,255,255,.02);
    overflow: hidden;
    will-change: transform;
    transform: translate3d(0,0,0);
    transition:
        transform .28s cubic-bezier(.22,1,.36,1),
        background-color .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.az-msg::after {
    display: none !important;
    content: none !important;
}

.az-msg img {
    position: relative;
    z-index: 1;
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    filter: none;
    transform: translate3d(0,0,0) scale(1);
    transition:
        transform .28s cubic-bezier(.22,1,.36,1),
        filter .28s ease;
}

.az-msg:hover {
    transform: translate3d(0,-3px,0);
    background: #c9a45c;
    border-color: #c9a45c;
    box-shadow: 0 14px 30px rgba(201,164,92,.28);
}

.az-msg:hover img {
    filter: brightness(0) invert(1);
    transform: translate3d(0,0,0) scale(1.06);
}

/* Premium contacts block with map */
.az-contacts__box {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
    gap: 0;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(201,164,92,.18);
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

.az-contacts__content {
    padding: 58px 56px;
}

.az-contact-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 30px 0 26px;
}

.az-contact-list a {
    text-decoration: none;
    line-height: 1.15;
    transition: color .25s ease;
}

.az-contact-list__phone {
    color: #c9a45c;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -.03em;
}

.az-contact-list__mail {
    color: #17130f;
    font-size: 19px;
    font-weight: 500;
}

.az-contact-list a:hover {
    color: #ad8337;
}

.az-contact-address {
    position: relative;
    margin: 0 0 34px;
    padding-left: 22px;
    color: rgba(36,31,26,.68);
    font-style: normal;
    font-size: 16px;
    line-height: 1.72;
}

.az-contact-address::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 3px;
    height: calc(100% - .9em);
    border-radius: 999px;
    background: linear-gradient(180deg, #d9bb78 0%, #c9a45c 100%);
}

.az-contacts__map {
    min-height: 460px;
    background: #f6f0e6;
}

.az-contacts__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    filter: saturate(.85) contrast(.98);
}

/* Soft premium section reveal */
.az-reveal {
    opacity: 0;
    transform: translate3d(0,32px,0);
    filter: blur(8px);
    transition:
        opacity .9s cubic-bezier(.22,1,.36,1),
        transform .9s cubic-bezier(.22,1,.36,1),
        filter .9s cubic-bezier(.22,1,.36,1);
    transition-delay: var(--az-reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.az-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0,0,0);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .az-reveal,
    .az-reveal.is-visible {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .az-msg,
    .az-msg img,
    .az-feature-card__image img,
    .az-gallery__item img,
    .az-btn {
        transition: none;
    }
}

@media (max-width: 980px) {
    .az-contacts__box {
        grid-template-columns: 1fr;
    }

    .az-contacts__content {
        padding: 44px 34px;
    }

    .az-contacts__map,
    .az-contacts__map iframe {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .az-contacts__content {
        padding: 32px 26px;
    }

    .az-contact-list__phone {
        font-size: 25px;
    }

    .az-contact-list__mail {
        font-size: 16px;
    }

    .az-contact-address {
        font-size: 15px;
    }

    .az-contacts__map,
    .az-contacts__map iframe {
        min-height: 320px;
    }
}
