.hero {
    padding: 0;
    padding-bottom: 60px !important;
}

.hero #heroSwiper.swiper {
    width: 100%;
    height: 100vh;
    min-height: 620px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.hero #heroSwiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
}

.hero #heroSwiper .swiper-slide,
.hero #heroSwiper .slide {
    position: relative;
    flex: 0 0 100% !important;
    flex-shrink: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero #heroSwiper .bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 12s ease-out;
    will-change: transform;
    background-color: #000;
}

.hero #heroSwiper .swiper-slide::before,
.hero #heroSwiper .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.hero #heroSwiper .swiper-slide:hover .bg,
.hero #heroSwiper .slide:hover .bg {
    transform: scale(1.08);
}

.hero #heroSwiper .decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero #heroSwiper .decor::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    top: 8%;
    left: 12%;
    background: radial-gradient(circle,
            rgba(224, 194, 151, 0.3),
            transparent 65%);
    filter: blur(4px);
    animation: moveDecor 14s infinite linear;
}

.hero #heroSwiper .decor::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    bottom: 10%;
    right: 10%;
    border: 2px solid rgba(224, 194, 151, 0.35);
    transform: rotate(45deg);
    animation: moveDecor 16s infinite reverse linear;
}

@keyframes moveDecor {
    0% {
        transform: translate(0, 0) rotate(0);
    }

    100% {
        transform: translate(25px, 25px) rotate(360deg);
    }
}

.hero #heroSwiper .content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero .eyebrow {
    font-family: "Barlow", serif;
    color: var(--brown);
    text-shadow: 2px 2px 12px #6d6d6d;
    font-weight: 900;
    letter-spacing: 0.15em;
    font-size: 16px;
}

.hero h1 {
    font-family: "Barlow", serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    margin-top: 14px;
    text-shadow: 2px 2px 12px #6d6d6d;
}

.hero p {
    font-size: 16px;
    color: var(--muted);
    margin: 14px auto 20px;
    max-width: 780px;
    text-shadow: 2px 2px 12px #6d6d6d;
}

.hero .actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero #heroSwiper .swiper-button-prev,
.hero #heroSwiper .swiper-button-next {
    position: absolute;
    top: 50%;
    z-index: 30;
    width: 45px;
    height: 45px;
    margin-top: -27px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(224, 194, 151, 0.34);
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
    transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease, color 0.28s ease;
}

.hero #heroSwiper .swiper-button-prev {
    left: clamp(18px, 3vw, 42px);
}

.hero #heroSwiper .swiper-button-next {
    right: clamp(18px, 3vw, 42px);
}

.hero #heroSwiper .swiper-button-prev::after,
.hero #heroSwiper .swiper-button-next::after {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
    color: currentColor;
    opacity: 0.5;
}

.hero #heroSwiper .swiper-button-prev::after {
    content: "‹";
}

.hero #heroSwiper .swiper-button-next::after {
    content: "›";
}

.hero #heroSwiper .swiper-button-prev:hover,
.hero #heroSwiper .swiper-button-next:hover {
    background: rgba(224, 194, 151, 0.18);
    border-color: rgba(224, 194, 151, 0.72);
    color: #f1d7aa;
    transform: scale(1.04);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.52), 0 0 24px rgba(224, 194, 151, 0.22);
}

.hero #heroSwiper .swiper-button-prev.swiper-button-disabled,
.hero #heroSwiper .swiper-button-next.swiper-button-disabled {
    opacity: 0.35 !important;
    pointer-events: none;
}

.hero #heroSwiper .swiper-pagination {
    z-index: 32;
    bottom: 30px;
}

.hero #heroSwiper .swiper-pagination-bullet {
    background: rgba(224, 194, 151, 0.5);
    width: 12px;
    height: 12px;
    opacity: 1;
    transition: transform 0.25s ease, background-color 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}

.hero #heroSwiper .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 28px;
    border-radius: 999px;
    transform: scale(1);
}

@media (max-width: 640px) {
    .hero #heroSwiper.swiper {
        height: 78vh;
        min-height: 480px;
    }

    .hero .eyebrow {
        font-size: 13px;
    }

    .hero h1 {
        font-size: clamp(28px, 6.5vw, 48px);
    }

    .hero p {
        font-size: 14px;
    }

    .hero #heroSwiper .swiper-button-prev,
    .hero #heroSwiper .swiper-button-next {
        width: 44px;
        height: 44px;
        margin-top: -22px;
    }

    .hero #heroSwiper .swiper-button-prev {
        left: 12px;
    }

    .hero #heroSwiper .swiper-button-next {
        right: 12px;
    }

    .hero #heroSwiper .swiper-button-prev::after,
    .hero #heroSwiper .swiper-button-next::after {
        font-size: 28px;
    }
}

.head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.head h2 {
    font-family: "Barlow", serif;
    letter-spacing: 0.075em;
    color: var(--gold);
    font-size: 30px;
    font-weight: 500;
    position: relative;
}

.head h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

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

.slab-card {
    position: relative;
    border-radius: var(--rad);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0a0f12;
    box-shadow: var(--shadow);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.slab-card:hover {
    transform: translateY(-7px);
    border-color: rgba(224, 194, 151, 0.28);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.66), 0 0 26px rgba(224, 194, 151, 0.28);
}

.slab-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(224, 194, 151, 0.15),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.slab-card:hover::before {
    opacity: 1;
}

.slab-card .pic {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.slab-card .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.slab-card:hover .pic img {
    transform: scale(1.045);
    filter: brightness(0.96);
}

.slab-card .meta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    z-index: 2;
}

.slab-card .meta,
.slab-card .meta * {
    transform: none !important;
    scale: 1 !important;
}

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

.tile-card {
    position: relative;
    border-radius: var(--rad);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.tile-card:hover {
    transform: translateY(-7px);
    border-color: rgba(224, 194, 151, 0.28);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.66), 0 0 26px rgba(224, 194, 151, 0.28);
    filter: none;
}

.tile-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%,
            rgba(224, 194, 151, 0.2),
            transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.tile-card:hover::before {
    opacity: 1;
    transform: none;
}

.tile-card .pic {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.tile-card .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.tile-card:hover .pic img {
    transform: scale(1.045);
    filter: brightness(0.96);
}

.tile-card .pic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.3));
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.tile-card:hover .pic::after {
    opacity: 0.85;
    transform: none;
}

.tile-card .meta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    z-index: 2;
}

.tile-card .meta,
.tile-card .meta * {
    transform: none !important;
    scale: 1 !important;
}

.center-dim {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    z-index: 2;
    direction: ltr;
}

.center-dim .dim::before {
    content: attr(data-dim);
    font-family: "Barlow", serif;
    font-weight: 800;
    font-size: 44px;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    letter-spacing: 0.04em;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
    transition: color 0.25s ease, -webkit-text-stroke-color 0.25s ease, text-shadow 0.25s ease;
}

.slab-card:hover .center-dim .dim::before,
.tile-card:hover .center-dim .dim::before {
    transform: none;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 0 22px rgba(224, 194, 151, 0.24);
}

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

.future-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0a0f12;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.future-card:hover {
    transform: translateY(-7px);
    border-color: rgba(224, 194, 151, 0.28);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.66), 0 0 26px rgba(224, 194, 151, 0.28);
    filter: none;
}

.future-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg,
            rgba(224, 194, 151, 0.16),
            transparent 62%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.future-card:hover::before {
    opacity: 1;
    animation: none;
    transform: none;
}

.future-card .shot {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.future-card .shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.future-card:hover .shot img {
    transform: scale(1.045);
    filter: brightness(0.96);
}

.future-card .shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(224, 194, 151, 0.22) 70%);
    opacity: 0.75;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.future-card:hover .shot::after {
    opacity: 1;
    transform: none;
}

.future-meta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: none;
}

.future-meta,
.future-meta * {
    transform: none !important;
    scale: 1 !important;
}

.future-meta h4 {
    font-family: "Barlow", serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.future-meta p {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.future-card:hover .future-meta h4 {
    color: var(--gold);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
}

.video-wrap {
    position: relative;
    border-radius: var(--rad);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #000;
    box-shadow: var(--shadow);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.video-wrap:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 194, 151, 0.28);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.66), 0 0 26px rgba(224, 194, 151, 0.28);
}

.video-poster {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: linear-gradient(45deg,
            rgba(224, 194, 151, 0.25),
            rgba(0, 0, 0, 0.55));
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.play-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 32px rgba(224, 194, 151, 0.48);
}

.play-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(224, 194, 151, 0.35);
    transform: scale(1.5);
    animation: pulse 2.2s infinite ease-out;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(2.2);
    }
}

.about .img {
    border-radius: var(--rad);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    height: 400px;
    box-shadow: var(--shadow);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.about .img:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 194, 151, 0.28);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.62), 0 0 24px rgba(224, 194, 151, 0.22);
}

.about .text {
    background: #131a1d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--rad);
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.about .text:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 194, 151, 0.28);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.62), 0 0 24px rgba(224, 194, 151, 0.22);
}

.about .text,
.about .text * {
    scale: 1 !important;
}

.about .text p {
    line-height: 1.85;
}

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

.post {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
    perspective: none;
}

.post:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 194, 151, 0.28);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.62), 0 0 24px rgba(224, 194, 151, 0.28);
}

.post .cover {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
}

.post .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: none;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.post:hover .cover img {
    transform: scale(1.035);
    filter: brightness(0.94);
}

.post .body {
    padding: 18px;
    min-height: 112px;
}

.post .body,
.post .body * {
    transform: none !important;
    scale: 1 !important;
    letter-spacing: normal !important;
}

.post .body h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 54px;
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.5;
    transition: color 0.25s ease;
}

.post:hover .body h4 {
    color: var(--gold);
}

.post .meta {
    font-size: 13px;
    color: var(--muted);
    transition: color 0.25s ease;
}

.post:hover .meta {
    color: #e6d0ad;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.contact-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
    padding: 22px;
    text-align: center;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    cursor: pointer;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 194, 151, 0.28);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.62), 0 0 24px rgba(224, 194, 151, 0.28);
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(45deg, transparent, rgba(224, 194, 151, 0.15));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card .icon {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 8px;
    transition: color 0.28s ease, transform 0.28s ease;
}

.contact-card:hover .icon {
    transform: none;
    color: #f1d7aa;
}

.contact-card a,
.contact-card br {
    transform: none !important;
    scale: 1 !important;
}

.contact-card a {
    position: relative;
    z-index: 2;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

.form input,
.form select,
.form textarea {
    background: #0b1215;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    padding: 12px;
    transition: border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(224, 194, 151, 0.15);
    transform: none;
}

.form textarea {
    grid-column: 1/-1;
    min-height: 120px;
    resize: vertical;
}

.form button {
    grid-column: 1/-1;
    justify-self: start;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.form button:hover {
    transform: translateY(-3px);
}

.slab-card .pic img,
.tile-card .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog-hero__link {
    position: relative;
    display: block;
    width: 100%;
    height: var(--catalogHeroH, 360px);
    border-radius: var(--rad, 16px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    will-change: transform;
    background: #0a0f12;
    isolation: isolate;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.catalog-hero__bg,
.catalog-hero__grain,
.catalog-hero__shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.catalog-hero__bg {
    background: var(--bg, none) center/cover no-repeat;
    transform: translate3d(var(--tx, 0), var(--ty, 0), 0) scale(1.08);
    transition: transform 0.15s ease-out;
    filter: contrast(1.02) saturate(1.02) brightness(1.02);
}

.catalog-hero__grain {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' opacity='0.08' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.catalog-hero__shine {
    background: radial-gradient(1200px 400px at var(--mx, 50%) var(--my, 50%),
            rgba(224, 194, 151, 0.25),
            transparent 60%);
    transition: background 0.1s ease-out;
}

.catalog-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: clamp(16px, 3vw, 20px);
    display: grid;
    gap: 15px;
    align-content: end;
    color: #fff;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.55) 65%,
            rgba(0, 0, 0, 0.75));
}

.catalog-hero__content,
.catalog-hero__content * {
    transform: none !important;
    scale: 1 !important;
}

.catalog-hero__eyebrow {
    font-family: "Barlow", serif;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 900;
    font-size: 13px;
}

.catalog-hero__title {
    font-family: "Barlow", serif;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 14px #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catalog-hero__subtitle {
    margin: 0;
    color: var(--muted);
    font-size: clamp(13px, 2vw, 15px);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catalog-hero__ctaRow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.catalog-hero__cta {
    padding: 10px 18px;
    border-radius: 999px;
}

.catalog-hero__badge {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ddd;
    background: rgba(0, 0, 0, 0.25);
}

.catalog-hero__link:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 194, 151, 0.28);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.66), 0 0 26px rgba(224, 194, 151, 0.28);
}

.catalog-hero__link[data-tilt="1"] {
    transform: translateY(-6px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

@media (max-width: 1200px) {
    .slab-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .future-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 860px) {

    .slab-grid,
    .tiles {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

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

    .contact-cards {
        grid-template-columns: 1fr;
    }

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

    .slab-card .meta,
    .tile-card .meta {
        left: 14px;
        right: 14px;
        bottom: 12px;
    }

    .center-dim .dim::before {
        font-size: clamp(24px, 9vw, 42px);
        -webkit-text-stroke: 1.5px #fff;
    }

    .catalog-hero__content {
        align-content: end;
        padding: 18px;
    }

    .catalog-hero__subtitle {
        display: none;
    }
}

@media (max-width: 640px) {
    .head h2 {
        font-size: 28px;
    }

    .slab-card .meta div > div:first-child {
        font-size: 18px !important;
    }

    .tile-card .meta div > div:first-child {
        font-size: 16px !important;
    }

    .cta {
        padding: 6px 10px !important;
    }
}

html[dir="rtl"] .hero #heroSwiper.swiper {
    direction: ltr
}

html[dir="rtl"] .hero #heroSwiper .content {
    direction: rtl;
    text-align: center;
    font-family: "Peyda", sans-serif
}

html[dir="rtl"] .hero .eyebrow {
    font-family: "Peyda", sans-serif;
    letter-spacing: 0;
    font-weight: 800;
    line-height: 1.9
}

html[dir="rtl"] .hero h1 {
    font-family: "Peyda", sans-serif;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0
}

html[dir="rtl"] .hero p {
    font-family: "Peyda", sans-serif;
    line-height: 2
}

html[dir="rtl"] .hero #heroSwiper .swiper-button-prev {
    right: clamp(18px, 3vw, 42px);
    left: auto
}

html[dir="rtl"] .hero #heroSwiper .swiper-button-next {
    left: clamp(18px, 3vw, 42px);
    right: auto
}

html[dir="rtl"] .hero #heroSwiper .swiper-button-prev::after {
    content: "›"
}

html[dir="rtl"] .hero #heroSwiper .swiper-button-next::after {
    content: "‹"
}

html[dir="rtl"] .head {
    direction: rtl;
    text-align: right
}

html[dir="rtl"] .head h2 {
    font-family: "Peyda", sans-serif;
    letter-spacing: 0;
    font-weight: 800;
    line-height: 1.7
}

html[dir="rtl"] .head h2::after {
    right: 0;
    left: auto;
    background: linear-gradient(270deg, var(--gold), transparent)
}

html[dir="rtl"] .slab-card,
html[dir="rtl"] .tile-card,
html[dir="rtl"] .future-card,
html[dir="rtl"] .post,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .catalog-hero__link {
    direction: rtl
}

html[dir="rtl"] .slab-card .meta,
html[dir="rtl"] .tile-card .meta {
    right: 16px;
    left: 16px
}

html[dir="rtl"] .slab-card::before {
    background: linear-gradient(225deg, rgba(224, 194, 151, .15), transparent 60%)
}

html[dir="rtl"] .tile-card::before {
    background: radial-gradient(circle at 70% 30%, rgba(224, 194, 151, .2), transparent 70%)
}

html[dir="rtl"] .tile-card .pic::after {
    background: linear-gradient(315deg, transparent, rgba(0, 0, 0, .3))
}

html[dir="rtl"] .center-dim .dim::before {
    font-family: "IRANSans", sans-serif;
    font-weight: 900;
    letter-spacing: 0
}

html[dir="rtl"] .future-card::before {
    background: linear-gradient(225deg, rgba(224, 194, 151, .16), transparent 62%)
}

html[dir="rtl"] .future-card .shot::after {
    background: linear-gradient(240deg, transparent 30%, rgba(224, 194, 151, .22) 70%)
}

html[dir="rtl"] .future-meta {
    right: 16px;
    left: 16px;
    text-align: right
}

html[dir="rtl"] .future-meta h4 {
    font-family: "Peyda", sans-serif;
    font-weight: 800;
    line-height: 1.5
}

html[dir="rtl"] .future-meta p {
    line-height: 1.8
}

html[dir="rtl"] .split {
    direction: rtl
}

html[dir="rtl"] .about .text {
    direction: rtl;
    text-align: right
}

html[dir="rtl"] .about .text p {
    line-height: 2.15;
    display: block
}

html[dir="rtl"] .action-row {
    margin-top: 16px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

html[dir="rtl"] .video-wrap video {
    width: 100%;
    height: 300px;
    margin: auto;
    object-fit: contain;
    display: block
}

html[dir="rtl"] #video h3 {
    font-family: "Peyda", sans-serif;
    letter-spacing: 0;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.8
}

html[dir="rtl"] #video p {
    line-height: 2.1
}

html[dir="rtl"] .post .body {
    direction: rtl;
    text-align: right
}

html[dir="rtl"] .post .body h4 {
    font-family: "Peyda", sans-serif;
    line-height: 1.85;
    font-weight: 700
}

html[dir="rtl"] .post .meta {
    direction: rtl;
    text-align: right
}

html[dir="rtl"] .contact-card {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center
}

html[dir="rtl"] .contact-card .icon {
    margin-bottom: 0
}

html[dir="rtl"] .booking {
    margin-top: 28px
}

html[dir="rtl"] .form {
    direction: rtl
}

html[dir="rtl"] .form input,
html[dir="rtl"] .form select,
html[dir="rtl"] .form textarea {
    font-family: "Peyda", sans-serif;
    text-align: right;
    direction: rtl;
    line-height: 1.8
}

html[dir="rtl"] .form button {
    justify-self: start
}

html[dir="rtl"] .catalog-hero__content {
    direction: rtl;
    text-align: right
}

html[dir="rtl"] .catalog-hero__eyebrow {
    font-family: "Peyda", sans-serif;
    letter-spacing: 0;
    font-weight: 900;
    line-height: 1.8
}

html[dir="rtl"] .catalog-hero__title {
    font-family: "Peyda", sans-serif;
    line-height: 1.65;
    font-weight: 800;
    letter-spacing: 0
}

html[dir="rtl"] .catalog-hero__subtitle {
    line-height: 2
}

html[dir="rtl"] .catalog-hero__ctaRow {
    justify-content: flex-start
}

@media (max-width:860px) {

    html[dir="rtl"] .slab-card .meta,
    html[dir="rtl"] .tile-card .meta {
        right: 14px;
        left: 14px
    }
}

@media (max-width:640px) {
    html[dir="rtl"] .hero .eyebrow {
        font-size: 12px;
        line-height: 1.8
    }

    html[dir="rtl"] .hero h1 {
        font-size: clamp(25px, 6vw, 42px)
    }

    html[dir="rtl"] .head h2 {
        font-size: 26px
    }

    html[dir="rtl"] .hero #heroSwiper .swiper-button-prev {
        right: 12px;
        left: auto
    }

    html[dir="rtl"] .hero #heroSwiper .swiper-button-next {
        left: 12px;
        right: auto
    }
}