/* =========================
   RESET / BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg-main: #050505;
    --bg-secondary: #0d0d0d;
    --bg-card: #121212;
    --gold: #c6a15b;
    --gold-dark: #8f6d32;
    --gold-light: #e0c27c;
    --text-main: #f5f1e8;
    --text-soft: #cfc7b8;
    --border-soft: rgba(198, 161, 91, 0.25);
    --border-strong: rgba(198, 161, 91, 0.5);
    --shadow-gold: 0 0 25px rgba(198, 161, 91, 0.12);
    --transition: 0.3s ease;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1380px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection {
    background: var(--gold);
    color: #000;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

main section {
    padding: 90px 0;
}

/* =========================
   GLOBAL
========================= */
.section-heading {
    max-width: 900px;
    margin-bottom: 42px;
}

.section-heading h2 {
    font-size: 2.2rem;
    line-height: 1.15;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.section-heading p {
    font-size: 1.02rem;
    color: var(--text-soft);
}

.center-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.secondary-button,
.consultation-button,
.location-preview-box a,
.service-card a,
.top-phone-button,
.top-consultation-button {
    transition: var(--transition);
}

/* =========================
   HEADER
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(198, 161, 91, 0.4);
}
.social-box {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.about-centered-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.center-heading {
    text-align: center;
    margin-bottom: 30px;
}
.about-box {
    background: linear-gradient(
        180deg,
        rgba(198, 161, 91, 0.06),
        rgba(10, 10, 10, 1)
    );

    border: 1px solid var(--border-strong);
    border-radius: 22px;

    padding: 40px 35px;

    box-shadow: var(--shadow-gold);

    text-align: left;
}
.about-box p {
    color: var(--text-soft);
    margin-bottom: 25px;
    font-size: 1rem;
}

.header-container {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.main-navigation {
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-block;
    padding: 10px 0;
    color: var(--text-main);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 220px;
    z-index: 50;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    box-shadow: var(--shadow-gold);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: var(--text-soft);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(198, 161, 91, 0.08);
    color: var(--gold-light);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-box {
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 161, 91, 0.04);
    transition: var(--transition);
}

.social-box:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 0 18px rgba(198, 161, 91, 0.2);
    background: rgba(198, 161, 91, 0.1);
}

.social-box img {
    width: 95%;
    height: 95%;
    object-fit: contain;
}
.nav-cta-item {
    display: flex;
    align-items: center;
}

.nav-consultation-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: black;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 0 0 rgba(198, 161, 91, 0);
}

.nav-consultation-button:hover {
    background: rgba(198, 161, 91, 0.12);
    border-color: var(--gold-light);
    color: var(--gold-light);
    box-shadow: 0 0 18px rgba(198, 161, 91, 0.12);
    transform: translateY(-1px);
}
.nav-mobile-more,
.mobile-more-panel{
    display: none;
}
/* =========================
   HERO
========================= */
.hero-section {
    position: relative;
    padding-top: 70px;
    padding-bottom: 110px;
    overflow: hidden;
    background: linear-gradient(to bottom, #070707 0%, #050505 100%);
}


.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 720px;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.82)),
        url("../images/logo/collage.png") center top / cover no-repeat;
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 420px;
    left: 0;
    right: 0;
    height: 320px;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0) 0%, #050505 100%);
    pointer-events: none;
    z-index: 1;
}
.mobile-more-panel {
    display: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-top-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin-bottom: 70px;
}

.hero-top-side {
    display: flex;
    align-items: center;
}

.hero-top-left {
    justify-content: flex-start;
}

.hero-top-right {
    justify-content: flex-end;
}


.hero-top-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-brand-box {
    position: relative;
    text-align: center;
    padding: 18px 26px 16px;
    border: 1px solid rgba(198, 161, 91, 0.28);
    border-radius: 20px;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.48),rgba(0, 0, 0, 0.30));
    backdrop-filter: blur(10px);
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.28), 0 0 20px rgba(198, 161, 91, 0.08);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-brand-box:hover {
    transform: translateY(-2px);
    border-color: rgba(198, 161, 91, 0.42);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.34),
        0 0 28px rgba(198, 161, 91, 0.12);
}

.hero-logo-wrap {
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}


.hero-logo {
    display: block;
    max-width: 70px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(1.05) contrast(1.05);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-brand-box:hover .hero-logo {
    transform: scale(1.04);
    filter: brightness(1.06) contrast(1.08);
}

.hero-brand-title {
    margin: 0;
    color: #fff;
    font-size: 1.95rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.05;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.30);
}

.hero-brand-subtitle {
    margin: 8px 0 0;
    color: var(--gold);
    font-size: 0.88rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.95;
}

@keyframes logoFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

.top-phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0b0b0b;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-gold);
}

.top-phone-button:hover {
    background: rgba(198, 161, 91, 0.14);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.top-consultation-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 68px;
    min-width: 220px;
    padding: 12px 26px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0b0b0b;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    box-shadow: 0 10px 30px rgba(198, 161, 91, 0.18);
}

.top-consultation-button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 34px rgba(198, 161, 91, 0.24);
}

.hero-main-content {
    display: grid;
    grid-template-columns: minmax(320px, 470px) minmax(420px, 700px);
    align-items: start;
    justify-content: center;
    gap: 54px;
    margin-top: 150px;

}
.hero-image-block {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.hero-image-block {
    position: relative;
}

/* лек glow отдолу */
.hero-image-block::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80px;
    filter: blur(25px);
    z-index: -1;
}
.hero-image {
    max-width: 520px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.hero-text-block {
    background: linear-gradient(180deg, rgba(198, 161, 91, 0.06), rgba(198, 161, 91, 0.02));
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    box-shadow: var(--shadow-gold);
}

.hero-small-text {
    color: var(--gold);
    font-size: 0.94rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-text-block h1 {
    font-size: 2.45rem;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 20px;
}

.hero-description {
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 14px;
}

.hero-description:last-child {
    margin-bottom: 0;
}

.hero-image-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    height: 800px;
    object-fit: cover;
    object-position: center;
}

/* =========================
   SERVICES PREVIEW
========================= */
.services-preview-section {
    background: #080808;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: linear-gradient(180deg, rgba(198, 161, 91, 0.06), rgba(18, 18, 18, 0.95));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-soft);
    margin-bottom: 20px;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
}

.service-card a:hover {
    color: var(--gold-light);
}

/* =========================
   ABOUT PREVIEW
========================= */
.about-preview-section {
    background: linear-gradient(to bottom, #050505, #090909);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-preview-text {
    max-width: 860px;
    background: rgba(198, 161, 91, 0.03);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.about-preview-text p {
    color: var(--text-soft);
    margin-bottom: 20px;
}

.secondary-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 14px;
    border: 1px solid var(--border-strong);
    color: var(--gold-light);
    background: transparent;
    font-weight: 700;
}

.secondary-button:hover {
    background: rgba(198, 161, 91, 0.08);
    border-color: var(--gold);
}

/* =========================
   CONSULTATION PREVIEW
========================= */
.consultation-preview-section {
    background: linear-gradient(180deg, rgba(198, 161, 91, 0.06), rgba(5, 5, 5, 0.95));
}

.consultation-cta-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.consultation-button {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0b0b0b;
    box-shadow: 0 10px 30px rgba(198, 161, 91, 0.18);
    flex-direction: column;
    line-height: 1.05;
    min-width: 220px;
    min-height: 66px;
    padding: 16px 26px;
    border-radius: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border-strong);
}

.consultation-button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 34px rgba(198, 161, 91, 0.24);
}

.large-consultation-button {
    min-width: 280px;
    min-height: 78px;
    font-size: 1.08rem;
    border-radius: 20px;
}

/* =========================
   REVIEWS
========================= */
.reviews-slider-section {
    background: #070707;
}

.reviews-slider-wrapper {
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    gap: 20px;
    align-items: center;
}

.reviews-viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
    cursor: grab;
}
.reviews-viewport.is-dragging {
    cursor: grabbing;
}
.reviews-slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}
.reviews-marquee-viewport {
    touch-action: pan-y;
    cursor: grab;
}

.reviews-marquee-viewport:active {
    cursor: grabbing;
}

.reviews-slider-wrapper:hover .reviews-slider-track {
    animation-play-state: paused;
}

.review-card {
    flex: 0 0 320px;
    min-height: 260px;
    background: linear-gradient(180deg, rgba(198, 161, 91, 0.05), rgba(18, 18, 18, 1));
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 24px 18px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
}

.review-stars {
    color: var(--gold-light);
    letter-spacing: 3px;
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.review-card h3 {
    color: var(--text-main);
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.review-card p {
    color: var(--text-soft);
    font-size: 0.96rem;
}

.slider-arrow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: rgba(198, 161, 91, 0.05);
    color: var(--gold-light);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: rgba(198, 161, 91, 0.12);
    border-color: var(--gold);
}

.slider-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.reviews-slider-track.reverse {
    animation-name: reviews-marquee-reverse;
}

@keyframes reviews-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes reviews-marquee-reverse {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* =========================
   LOCATION PREVIEW
========================= */
.location-preview-section {
    background: linear-gradient(to bottom, #080808, #050505);
}

.location-preview-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #030303;
    border-top: 1px solid var(--border-soft);
    padding-top: 70px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 42px;
}

.footer-column h2,
.footer-column h3 {
    color: var(--gold-light);
    margin-bottom: 18px;
    line-height: 1.2;
}

.footer-column h2 {
    font-size: 1.5rem;
}

.footer-column h3 {
    font-size: 1.1rem;
}

.footer-column p,
.footer-column li a {
    color: var(--text-soft);
    font-size: 0.98rem;
}

.footer-column p {
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover,
.footer-column p a:hover,
.footer-socials a:hover {
    color: var(--gold-light);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.footer-socials a {
    color: var(--text-soft);
    transition: var(--transition);
}

.footer-bottom {
    border-top: 1px solid rgba(198, 161, 91, 0.15);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #a79e90;
    font-size: 0.94rem;
}
/* =========================
   GALLERY PAGE
========================= */
.gallery-page-section {
    background:
        radial-gradient(circle at top center, rgba(198, 161, 91, 0.08), transparent 35%),
        linear-gradient(to bottom, #070707 0%, #050505 100%);
    min-height: 100vh;
}

.gallery-page-title {
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--gold-light);
    margin-bottom: 16px;
    text-align: center;
}

.gallery-filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 42px;
}

.gallery-filter-btn {
    min-height: 62px;
    padding: 0 28px;
    border-radius: 16px;
    border: 1px solid var(--border-strong);
    background: rgba(198, 161, 91, 0.05);
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.gallery-filter-btn:hover {
    transform: translateY(-2px) scale(1.04);
    background: rgba(198, 161, 91, 0.14);
    border-color: var(--gold);
    color: #fff2d0;
    box-shadow: 0 12px 24px rgba(198, 161, 91, 0.16);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0b0b0b;
    border-color: var(--gold);
    box-shadow: 0 12px 28px rgba(198, 161, 91, 0.22);
}

.gallery-grid-wrapper {
    width: 100%;
}

.gallery-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-dynamic-grid.is-changing {
    opacity: 0;
    transform: translateY(12px);
}

.gallery-dynamic-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--border-soft);
    background: #111;
    min-height: 360px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.gallery-dynamic-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--border-strong);
    box-shadow:
        0 22px 40px rgba(0, 0, 0, 0.34),
        0 0 24px rgba(198, 161, 91, 0.1);
}

.gallery-dynamic-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
}

.gallery-dynamic-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.04);
}

/* =========================
   CONTACT PAGE
========================= */
.contact-page-section {
    background:
        radial-gradient(circle at top center, rgba(198, 161, 91, 0.08), transparent 35%),
        linear-gradient(to bottom, #070707 0%, #050505 100%);
    min-height: 100vh;
}

.contact-page-title {
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--gold-light);
    margin-bottom: 16px;
    text-align: center;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(320px, 440px) minmax(420px, 1fr);
    gap: 28px;
    align-items: stretch;
}

.contact-info-card,
.contact-map-card {
    background: linear-gradient(180deg, rgba(198, 161, 91, 0.05), rgba(10, 10, 10, 1));
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: var(--shadow-gold);
}

.contact-info-card h2,
.contact-map-card h2 {
    color: var(--gold-light);
    font-size: 1.6rem;
    margin-bottom: 22px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-info-item {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(198, 161, 91, 0.12);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-label {
    display: block;
    color: var(--gold);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-value {
    color: var(--text-soft);
    font-size: 1rem;
}

a.contact-value:hover {
    color: var(--gold-light);
}

.contact-socials-block h3 {
    color: var(--gold-light);
    margin-bottom: 14px;
    font-size: 1.15rem;
}

.contact-social-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 28px;
}

.contact-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    background: rgba(198, 161, 91, 0.05);
    color: var(--gold-light);
    transition: var(--transition);
    white-space: nowrap;
    flex: 1 1 auto;
    font-size: 0.88rem;
}


.contact-social-links a:hover {
    transform: translateY(-2px);
    background: rgba(198, 161, 91, 0.12);
    border-color: var(--gold);
}

.contact-cta-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.map-embed-wrapper {
    width: 100%;
    min-height: 520px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    background: #111;
    margin-bottom: 18px;
}

.map-embed-wrapper iframe {
    display: block;
    width: 100%;
    height: 520px;
}

.map-note-box {
    padding: 18px 18px;
    border-radius: 16px;
    background: rgba(198, 161, 91, 0.04);
    border: 1px solid rgba(198, 161, 91, 0.12);
}

.map-note-box p {
    color: var(--text-soft);
}

.about-hero {
  padding: 40px 20px 70px;
  background: #0b0b0b;
  color: #f5f5f5;
}

.about-top-actions {
  max-width: 1200px;
  margin: 0 auto 35px;
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  align-items: center;
  gap: 20px;
}

.about-top-actions h1 {
  text-align: center;
  font-size: 52px;
  color: #d4af37;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

.about-action-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid #d4af37;
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  transition: 0.3s ease;
}

.about-action-btn:hover {
  background: #d4af37;
  color: #0b0b0b;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.about-text,
.about-image {
  min-height: 520px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: #111;
}

.about-text {
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: 34px;
  color: #d4af37;
  margin-bottom: 22px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 18px;
}

.about-text ul {
  margin: 8px 0 22px 0;
  padding-left: 20px;
}

.about-text ul li {
  margin-bottom: 12px;
  color: #f1f1f1;
  line-height: 1.7;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .about-top-actions {
    grid-template-columns: 1fr;
  }

  .about-top-actions h1 {
    order: -1;
    font-size: 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text,
  .about-image {
    min-height: auto;
  }

  .about-image {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 25px 15px 50px;
  }

  .about-top-actions h1 {
    font-size: 32px;
  }

  .about-text {
    padding: 30px 22px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p,
  .about-text ul li {
    font-size: 16px;
  }

  .about-image {
    height: 320px;
  }
}

/* =========================
   HELPER BLOCKS FOR OTHER PAGES
========================= */
.page-hero {
    padding: 80px 0 50px;
    background: linear-gradient(to bottom, rgba(198, 161, 91, 0.08), transparent);
}

.page-hero h1 {
    color: var(--gold-light);
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.page-hero p {
    max-width: 760px;
    color: var(--text-soft);
}

.content-card {
    background: rgba(198, 161, 91, 0.03);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
}

/* =========================
   GALLERY PAGE
========================= */
.gallery-grid-wrapper {
    width: 100%;
}

.gallery-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.gallery-dynamic-grid.is-changing {
    opacity: 0;
    transform: translateY(10px);
}

.gallery-dynamic-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(198, 161, 91, 0.16);
    background: linear-gradient(180deg, rgba(198, 161, 91, 0.04), rgba(10, 10, 10, 1));
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.gallery-dynamic-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
}

.gallery-dynamic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-dynamic-card:hover img {
    transform: scale(1.06);
}

.gallery-empty-message {
    grid-column: 1 / -1;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(198, 161, 91, 0.16);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(198, 161, 91, 0.04), rgba(10, 10, 10, 1));
    color: var(--text-soft);
    font-size: 1rem;
    padding: 24px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .gallery-dynamic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-dynamic-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CONTACT / FORM PREP
========================= */
.form-wrapper {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(198, 161, 91, 0.05), rgba(10, 10, 10, 1));
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 34px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #0a0a0a;
    color: var(--text-main);
    border: 1px solid rgba(198, 161, 91, 0.18);
    border-radius: 14px;
    padding: 16px 18px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(198, 161, 91, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.submit-button {
    width: 100%;
    min-height: 62px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0a0a0a;
    font-weight: 800;
    letter-spacing: 0.4px;
    transition: var(--transition);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(198, 161, 91, 0.22);
}