@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap');

:root {
    --cream: #f5eadc;
    --cream-soft: #d8cbbb;
    --gold: #c99551;
    --gold-light: #e8bd7d;
    --red: #b13747;
    --wine: #64131f;
    --line: rgba(224, 186, 132, .20);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 105px;
}

body {
    margin: 0;
    color: var(--cream);
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;

    background-color: #080808;
    background-image:
        linear-gradient(rgba(3,3,3,.32), rgba(3,3,3,.32)),
        url('/assets/img/marble.webp');
    background-position: center top;
    background-size: 1920px auto;
    background-repeat: repeat-y;
}

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

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

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


/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    background: rgba(5,5,5,.91);
    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-inner {
    height: 102px;
    display: grid;
    grid-template-columns: 270px 1fr auto;
    gap: 35px;
    align-items: center;
}

.brand {
    display: flex;
    flex-direction: column;
    width: max-content;
    line-height: .92;
}

.brand-main {
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.brand-second {
    margin-top: 7px;
    color: var(--red);
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    letter-spacing: 4px;
}

.brand-city {
    margin-top: 8px;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: 6px;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 45px;
}

.nav a {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #f4ebe1;
    transition: color .25s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 1px;
    background: var(--gold-light);
    transition: right .25s ease;
}

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

.nav a:hover::after {
    right: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.phone {
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
    font-size: 19px;
}

.phone-icon {
    margin-right: 8px;
    color: var(--gold-light);
}

.header-button {
    padding: 16px 25px;
    border: 1px solid rgba(232,189,125,.65);
    background: linear-gradient(135deg, #701724, #4a1018);
    color: #f1ca94;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: .7px;
    text-transform: uppercase;
}


/* HERO */

.hero {
    min-height: 800px;
    padding: 175px 0 95px;
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: .94fr 1.06fr;
    gap: 65px;
    align-items: center;
}

.eyebrow {
    margin-bottom: 25px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(66px, 5.5vw, 94px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -2px;
}

.hero h1 em {
    color: var(--red);
    font-weight: 500;
}

.hero-description {
    margin: 31px 0 0;
    color: var(--cream-soft);
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    line-height: 1.43;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-top: 38px;
}

.button-primary {
    padding: 18px 27px;
    border: 1px solid rgba(232,189,125,.6);
    background: linear-gradient(135deg, #721724, #4a1018);
    color: #f3c98f;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.button-primary:hover,
.header-button:hover {
    background: #7b1927;
}

.button-primary span {
    margin-left: 9px;
}

.button-link {
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gold);
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 19px;
}

.button-link span {
    margin-left: 12px;
}

.advantages {
    display: flex;
    gap: 42px;
    margin-top: 55px;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 13px;
}

.advantage-icon {
    color: var(--gold-light);
    font-size: 30px;
}

.advantage > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.advantage strong,
.advantage span {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: 1.2px;
}

.hero-photo {
    position: relative;
    height: 570px;
    overflow: hidden;
    border: 1px solid rgba(232,189,125,.18);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.22), transparent 45%),
        linear-gradient(0deg, rgba(0,0,0,.28), transparent 45%);
    pointer-events: none;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stamp {
    position: absolute;
    right: 32px;
    bottom: 115px;
    z-index: 2;

    width: 145px;
    height: 145px;

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

    border: 2px solid var(--gold-light);
    border-radius: 50%;
    background: rgba(7,7,7,.75);
    color: var(--gold-light);
    text-align: center;
}

.hero-stamp::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(232,189,125,.55);
    border-radius: 50%;
}

.hero-stamp span {
    z-index: 1;
    font-size: 9px;
    letter-spacing: 2px;
}

.hero-stamp strong {
    z-index: 1;
    margin: 8px 0;
    font-family: 'Playfair Display', serif;
    font-size: 25px;
}

.hero-signature {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    color: #f1d0a3;
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-style: italic;
    line-height: 1.2;
    transform: rotate(-5deg);
}


/* CATALOG */

.catalog {
    padding: 80px 0 105px;
    border-bottom: 1px solid var(--line);
}

.catalog-heading {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 75px;
    align-items: end;
    margin-bottom: 48px;
}

.catalog-heading h2,
.history h2,
.store h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.03;
}

.catalog-heading h2 {
    font-size: 63px;
}

.catalog-heading h2 em,
.history h2 em,
.store h2 em {
    color: var(--red);
    font-weight: 500;
}

.catalog-heading p {
    margin: 0 0 6px;
    color: var(--cream-soft);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.55;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 22px;
}

.category-card {
    overflow: hidden;
    border: 1px solid rgba(224,180,119,.36);
    background: rgba(5,5,5,.68);
    transition: transform .25s ease, border-color .25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
}

.category-photo {
    height: 230px;
    overflow: hidden;
}

.category-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.category-card:hover img {
    transform: scale(1.045);
}

.category-bottom {
    min-height: 95px;
    padding: 18px 20px;

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

.category-bottom h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
}

.category-bottom span {
    color: var(--gold-light);
    font-size: 28px;
}


/* HISTORY */

.history {
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
}

.history-grid {
    min-height: 330px;
    display: grid;
    grid-template-columns: 1.1fr .65fr .85fr;
    gap: 50px;
    align-items: center;
}

.history h2 {
    font-size: 63px;
}

.history-mark {
    display: flex;
    justify-content: center;
}

.factory {
    position: relative;
    width: 250px;
    height: 190px;
}

.factory::before {
    content: "";
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    height: 105px;
    border: 2px solid rgba(210,153,83,.48);
}

.factory::after {
    content: "";
    position: absolute;
    left: 64px;
    bottom: 49px;
    width: 120px;
    height: 120px;
    border-left: 2px solid rgba(210,153,83,.48);
    border-top: 2px solid rgba(210,153,83,.48);
    transform: rotate(45deg);
}

.factory span {
    position: absolute;
    top: 77px;
    left: 0;
    right: 0;
    z-index: 2;

    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    text-align: center;
}

.history-text {
    color: var(--cream-soft);
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    line-height: 1.55;
}

.history-text p {
    margin: 0 0 23px;
}

.history-text a {
    display: inline-block;
    margin-top: 5px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gold);
    color: var(--gold-light);
}


/* STORE */

.store {
    padding: 80px 0;
    background: rgba(68,10,19,.38);
    border-bottom: 1px solid var(--line);
}

.store-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.store h2 {
    font-size: 52px;
}

.store-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.store-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.store-icon {
    color: var(--gold-light);
    font-size: 29px;
}

.store-item div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-item small {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 1.7px;
}

.store-item strong,
.store-item a {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
}


/* FOOTER */

.footer {
    background: rgba(5,5,5,.72);
}

.footer-main {
    min-height: 155px;
    display: grid;
    grid-template-columns: 1fr 1.15fr .9fr 1.15fr;
    gap: 40px;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    font-family: 'Playfair Display', serif;
}

.footer-logo strong {
    color: var(--gold-light);
    font-size: 23px;
}

.footer-logo span {
    color: var(--red);
    font-size: 15px;
    letter-spacing: 3.5px;
}

.footer-logo small {
    margin-top: 7px;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: 5px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-icon {
    color: var(--gold-light);
    font-size: 30px;
}

.footer-info p {
    margin: 0;
    color: var(--cream-soft);
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    line-height: 1.5;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}

.footer-phone span {
    color: var(--gold-light);
}

.footer-bottom {
    min-height: 78px;
    border-top: 1px solid var(--line);

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

    color: rgba(245,234,220,.55);
    font-family: 'Playfair Display', serif;
    font-size: 13px;
}

.footer-bottom div {
    display: flex;
    gap: 30px;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}


/* TABLET */

@media (max-width: 1180px) {

    .nav {
        gap: 22px;
    }

    .nav a {
        font-size: 16px;
    }

    .header-button {
        display: none;
    }

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

    .category-photo {
        height: 280px;
    }
}


/* MOBILE */

@media (max-width: 850px) {

    .container {
        width: calc(100% - 36px);
    }

    .header-inner {
        height: 82px;
        grid-template-columns: 1fr auto;
    }

    .nav {
        display: none;
    }

    .phone {
        font-size: 16px;
    }

    .hero {
        padding: 130px 0 65px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(49px, 12vw, 68px);
    }

    .hero-description {
        font-size: 22px;
    }

    .hero-photo {
        height: 480px;
    }

    .catalog-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .catalog-heading h2 {
        font-size: 48px;
    }

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

    .history-mark {
        display: none;
    }

    .history h2 {
        font-size: 48px;
    }

    .store-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .store-details {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 40px 0;
    }
}


@media (max-width: 560px) {

    body {
        font-size: 17px;
        background-size: auto 1000px;
    }

    .brand-main {
        font-size: 18px;
    }

    .brand-second {
        font-size: 11px;
    }

    .brand-city {
        display: none;
    }

    .header-right .phone {
        font-size: 0;
    }

    .header-right .phone-icon {
        font-size: 26px;
    }

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

    .hero-description br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .advantages {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .hero-photo {
        height: 360px;
    }

    .hero-stamp {
        width: 110px;
        height: 110px;
        right: 17px;
        bottom: 90px;
    }

    .hero-signature {
        right: 18px;
        font-size: 19px;
    }

    .catalog {
        padding: 60px 0 75px;
    }

    .catalog-heading h2 {
        font-size: 42px;
    }

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

    .category-photo {
        height: 250px;
    }

    .category-bottom h3 {
        font-size: 22px;
    }

    .history h2,
    .store h2 {
        font-size: 42px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        padding: 25px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== HERO FINAL TUNING ===== */

.hero h1 {
    font-size: clamp(48px, 3.85vw, 66px);
    line-height: 1.03;
    letter-spacing: -1.2px;
}

.hero-photo {
    height: auto;
    overflow: visible;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.hero-photo::after {
    display: none;
}

.hero-photo img {
    width: 112%;
    max-width: none;
    height: auto;
    object-fit: contain;
    margin-left: -4%;
}

/* В исходном PNG уже есть награды,
   поэтому дополнительная декоративная печать не нужна */
.hero-stamp {
    display: none;
}

.hero-signature {
    display: none;
}

@media (max-width: 850px) {
    .hero h1 {
        font-size: clamp(43px, 9vw, 54px);
    }

    .hero-photo {
        height: auto;
    }

    .hero-photo img {
        width: 108%;
        margin-left: -4%;
    }
}

@media (max-width: 560px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero-photo {
        height: auto;
    }

    .hero-photo img {
        width: 110%;
        margin-left: -5%;
    }
}


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

.header {
    overflow: visible;
}

.header-inner {
    height: 94px;
    position: relative;
}

/* Фирменный логотип */
.brand-logo {
    position: relative;
    z-index: 1100;
    width: 190px;
    height: 94px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.brand-logo img {
    position: absolute;
    top: 10px;
    left: 0;
    width: 190px;
    height: auto;
    max-width: none;
    z-index: 1101;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,.35));
}

/* Немного опускаем пункты меню */
.nav,
.header-right {
    transform: translateY(6px);
}

@media (max-width: 850px) {

    .header-inner {
        height: 80px;
    }

    .brand-logo {
        width: 140px;
        height: 80px;
    }

    .brand-logo img {
        width: 140px;
        top: 10px;
    }

    .header-right {
        transform: none;
    }
}

@media (max-width: 560px) {

    .brand-logo {
        width: 125px;
    }

    .brand-logo img {
        width: 125px;
    }
}


/* ===== MOBILE HEADER / MENU ===== */

.mobile-menu-button,
.mobile-nav {
    display: none;
}

.phone-svg {
    width: 22px;
    height: 22px;
    fill: var(--gold-light);
    flex: 0 0 auto;
}

@media (max-width: 850px) {

    .header {
        background: rgba(8,8,8,.94);
    }

    .header-inner {
        height: 88px;
        min-height: 88px;
        display: grid;
        grid-template-columns: 60px 1fr 60px;
        align-items: center;
        padding: 0;
        position: relative;
    }

    .nav,
    .header-button {
        display: none;
    }

    /* Бургер слева */

    .mobile-menu-button {
        display: flex;
        width: 48px;
        height: 48px;
        padding: 0;
        border: 0;
        background: transparent;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        cursor: pointer;
        z-index: 1202;
    }

    .mobile-menu-button span {
        display: block;
        width: 31px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform .25s ease, opacity .25s ease;
    }

    .mobile-menu-button.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Логотип строго по центру */

    .brand-logo {
        position: absolute;
        left: 50%;
        top: 8px;
        transform: translateX(-50%);
        width: 145px;
        height: 105px;
        z-index: 1201;
        overflow: visible;
    }

    .brand-logo img {
        position: static;
        width: 145px;
        height: auto;
        max-width: none;
        filter: drop-shadow(0 7px 10px rgba(0,0,0,.45));
    }

    /* Телефон справа */

    .header-right {
        grid-column: 3;
        justify-self: end;
        transform: none;
        gap: 0;
    }

    .phone {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .phone-number {
        display: none;
    }

    .phone-svg {
        width: 27px;
        height: 27px;
        fill: #fff;
    }

    /* Выпадающее меню */

    .mobile-nav {
        position: absolute;
        display: flex;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;

        top: 88px;
        left: calc((100vw - 100%) / -2);
        width: 100vw;

        padding: 35px 30px 38px;
        flex-direction: column;

        background:
            linear-gradient(rgba(8,8,8,.94), rgba(8,8,8,.96)),
            url('/assets/img/marble.webp') center top / 1200px auto;

        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);

        transform: translateY(-12px);
        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;

        z-index: 1190;
    }

    .mobile-nav.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(232,189,125,.15);

        color: var(--cream);
        font-family: 'Playfair Display', serif;
        font-size: 24px;
    }

    .mobile-nav a:last-child {
        border-bottom: 0;
    }

    .mobile-nav a::after {
        content: "→";
        float: right;
        color: var(--gold-light);
    }

    /* Hero начинается ниже выступающего логотипа */

    .hero {
        padding-top: 145px;
    }
}

@media (max-width: 560px) {

    .brand-logo {
        width: 135px;
        height: 100px;
    }

    .brand-logo img {
        width: 135px;
    }

    .mobile-nav a {
        font-size: 22px;
    }
}


/* ===== CATALOG COMING SOON ===== */

.catalog-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;

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

    padding: 25px;

    visibility: hidden;
    opacity: 0;
    transition: opacity .25s ease, visibility .25s ease;
}

.catalog-modal.open {
    visibility: visible;
    opacity: 1;
}

.catalog-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.catalog-modal-window {
    position: relative;
    z-index: 1;

    width: min(540px, 100%);
    padding: 52px 55px 48px;

    background:
        linear-gradient(rgba(10,10,10,.91), rgba(10,10,10,.94)),
        url('/assets/img/marble.webp') center / 1000px auto;

    border: 1px solid rgba(232,189,125,.5);
    box-shadow: 0 30px 90px rgba(0,0,0,.65);

    text-align: center;

    transform: translateY(15px) scale(.98);
    transition: transform .25s ease;
}

.catalog-modal.open .catalog-modal-window {
    transform: translateY(0) scale(1);
}

.catalog-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;

    width: 40px;
    height: 40px;

    border: 0;
    background: transparent;

    color: rgba(245,234,220,.7);
    font-family: Arial, sans-serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
}

.catalog-modal-close:hover {
    color: var(--gold-light);
}

.catalog-modal-mark {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;

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

    border: 1px solid var(--gold);
    border-radius: 50%;

    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-style: italic;
}

.catalog-modal-window .eyebrow {
    margin-bottom: 13px;
}

.catalog-modal-window h2 {
    margin: 0;

    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 43px;
    font-weight: 500;
}

.catalog-modal-category {
    margin-top: 14px;

    color: var(--red);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
}

.catalog-modal-window p {
    margin: 25px 0 30px;

    color: var(--cream-soft);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.6;
}

.catalog-modal-ok {
    padding: 14px 35px;

    border: 1px solid rgba(232,189,125,.65);
    background: linear-gradient(135deg, #721724, #4a1018);

    color: #f3c98f;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;

    cursor: pointer;
}

.catalog-modal-ok:hover {
    background: #7b1927;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 560px) {

    .catalog-modal-window {
        padding: 45px 25px 38px;
    }

    .catalog-modal-window h2 {
        font-size: 35px;
    }

    .catalog-modal-category {
        font-size: 20px;
    }

    .catalog-modal-window p {
        font-size: 17px;
    }
}


/* ===== STORE & LEGAL DETAILS ===== */

.store-details {
    grid-template-columns: repeat(3, 1fr);
}

.store-requisites {
    grid-column: 1 / -1;
    margin-top: 12px;
    padding-top: 25px;
    border-top: 1px solid rgba(224,186,132,.18);
}

.store-requisites strong {
    margin-bottom: 3px;
}

.store-requisites div > span {
    color: var(--cream-soft);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.45;
}

.footer-legal {
    display: flex;
    flex-direction: column !important;
    gap: 6px !important;
}

.footer-legal span:last-child {
    color: rgba(245,234,220,.42);
    font-size: 11px;
    letter-spacing: .2px;
}

@media (max-width: 850px) {
    .store-details {
        grid-template-columns: 1fr;
    }

    .store-requisites {
        grid-column: auto;
    }

    .footer-legal span:last-child {
        line-height: 1.5;
    }
}


/* ===== LEGAL PAGES ===== */

.legal-page {
    padding: 175px 0 100px;
    min-height: 100vh;
}

.legal-container {
    max-width: 1120px;
}

.legal-heading {
    padding-bottom: 50px;
    margin-bottom: 55px;
    border-bottom: 1px solid var(--line);
}

.legal-heading h1 {
    margin: 0;

    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 4.5vw, 70px);
    font-weight: 500;
    line-height: 1.08;
}

.legal-heading h1 em {
    color: var(--red);
    font-weight: 500;
}

.legal-date {
    margin: 25px 0 0;

    color: rgba(245,234,220,.58);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
}

.legal-document {
    max-width: 960px;
}

.legal-document section {
    margin-bottom: 55px;
}

.legal-document h2 {
    margin: 0 0 22px;

    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 500;
}

.legal-document p,
.legal-document li {
    color: #ddd1c3;
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    line-height: 1.8;
}

.legal-document p {
    margin: 0 0 17px;
}

.legal-document ul {
    margin: 15px 0 0;
    padding-left: 25px;
}

.legal-document li {
    margin-bottom: 9px;
}

.legal-document a {
    color: var(--gold-light);
    border-bottom: 1px solid rgba(232,189,125,.45);
    transition: border-color .2s ease, color .2s ease;
}

.legal-document a:hover {
    color: #f5d6a8;
    border-color: #f5d6a8;
}

.legal-details {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 25px 28px;

    border-left: 2px solid var(--red);
    background: rgba(0,0,0,.28);

    color: var(--cream-soft);
    font-size: 16px;
    line-height: 1.55;
}

.legal-details strong {
    margin-bottom: 4px;
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 30px;
}

@media (max-width: 850px) {

    .legal-page {
        padding: 145px 0 70px;
    }

    .legal-heading {
        padding-bottom: 35px;
        margin-bottom: 40px;
    }

    .legal-heading h1 {
        font-size: 46px;
    }

    .legal-document h2 {
        font-size: 27px;
    }

    .legal-document section {
        margin-bottom: 45px;
    }
}

@media (max-width: 560px) {

    .legal-page {
        padding-top: 135px;
    }

    .legal-heading h1 {
        font-size: 37px;
    }

    .legal-document p,
    .legal-document li {
        font-size: 16px;
        line-height: 1.7;
    }

    .legal-document h2 {
        font-size: 25px;
    }

    .legal-details {
        padding: 22px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}


/* ===== STORE MAP ===== */

.store-map {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 65px;
}

.store-map-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.store-map-head .eyebrow {
    margin-bottom: 8px;
}

.store-map-head h3 {
    margin: 0;
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
}

.store-map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 27px;

    border: 1px solid rgba(232,189,125,.6);
    background: rgba(78,13,23,.75);

    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    letter-spacing: .4px;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.store-map-button:hover {
    background: #721724;
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.store-map-frame {
    position: relative;
    width: 100%;
    height: 500px;

    overflow: hidden;

    border: 1px solid rgba(232,189,125,.35);
    box-shadow: 0 25px 70px rgba(0,0,0,.38);
    background: #111;
}

.store-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;

    /* немного приглушаем карту под тёмный дизайн */
    filter: saturate(.75) contrast(1.03);
}

@media (max-width: 850px) {

    .store-map {
        margin-top: 45px;
    }

    .store-map-frame {
        height: 430px;
    }
}

@media (max-width: 560px) {

    .store-map-head {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }

    .store-map-head h3 {
        font-size: 31px;
    }

    .store-map-button {
        width: 100%;
    }

    .store-map-frame {
        height: 380px;
    }
}


/* ===== STORE PHOTO + MAP ===== */

.store-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.store-photo-column,
.store-map-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.store-visual-head {
    min-height: 82px;
    margin-bottom: 25px;
}

.store-visual-head .eyebrow {
    margin-bottom: 8px;
}

.store-visual-head h3 {
    margin: 0;
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
}

.store-map-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.store-photo,
.store-map-frame {
    width: 100%;
    height: 470px;
    overflow: hidden;

    border: 1px solid rgba(232,189,125,.35);
    box-shadow: 0 25px 70px rgba(0,0,0,.38);
    background: #111;
}

.store-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.store-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 1000px) {

    .store-visual-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .store-visual-head {
        min-height: 0;
    }

    .store-photo,
    .store-map-frame {
        height: 450px;
    }
}

@media (max-width: 560px) {

    .store-visual-grid {
        gap: 40px;
    }

    .store-visual-head h3 {
        font-size: 30px;
    }

    .store-photo {
        height: 360px;
    }

    .store-map-frame {
        height: 380px;
    }

    .store-map-head {
        align-items: stretch;
        flex-direction: column;
    }
}

