/* =========================
   Premium Brand Theme
   ========================= */

:root {
    --bg: #050505;
    --text: #E8E8E8;
    --surface: #0F0F0F;
    --surface-strong: rgba(232, 232, 232, 0.95);
    --surface-soft: rgba(232, 232, 232, 0.08);
    --glass: rgba(15, 15, 15, 0.6);
    --glass-strong: rgba(15, 15, 15, 0.9);
    --shadow: rgba(0, 0, 0, 0.85);
    --shadow-soft: rgba(0, 0, 0, 0.45);
    --muted: rgba(232, 232, 232, 0.55);
    --accent: #C5A059;
    --accent2: #E2C285;
    --contrast: rgba(0, 0, 0, 0.8);
    --border: rgba(197, 160, 89, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Iosevka Charon Mono', monospace;
    --max-width: 1200px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: clamp(14px, 1.0vw, 18px);
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
        scroll-padding-top: 70px;
    }
}

html,
body {
    height: 100%;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #050505 0%, #000 100%);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

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

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

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin: 0;
}

p,
li {
    font-size: clamp(0.9rem, 2.5vw, 1.02rem);
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.85);
}

/* Layout */
.container {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 1.5rem, var(--max-width));
    }
}

/* Header */
header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 999;
    padding: 1rem 0;
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.36);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 0;
        z-index: 1001;
    }
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
        gap: 0.75rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.15em;
    flex-shrink: 0;
}

.logo-text {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.95;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }

    .nav-links {
        display: none;
    }
}

.logo-img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav ul li a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    transition: color 0.25s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent);
}

nav ul li a::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.55rem 0.8rem;
    font-size: 1.35rem;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    min-height: 44px;
    min-width: 44px;
    flex-shrink: 0;
    margin-left: auto;
}

.menu-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

.lang-switcher,
.menu-lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.lang-switcher {
    margin-left: auto;
}

@media (max-width: 768px) {
    .lang-switcher {
        display: none;
    }
}

.book-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .book-btn {
        display: none;
    }
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.lang-btn.active {
    background: rgba(197, 160, 89, 0.25);
    border-color: var(--accent);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 2.5rem 1.5rem;
    overflow-y: auto;
}

.menu-overlay.active {
    display: flex;
}

@media (max-width: 768px) {
    .menu-overlay {
        padding: 1.5rem 1rem;
        align-items: flex-start;
        padding-top: 5rem;
    }
}

.menu-content {
    max-width: 560px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border);
    padding: 3rem 2.25rem;
    border-radius: 4px;
    background: var(--surface);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .menu-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
}

.menu-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .menu-content h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
}

.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    max-width: 320px;
    text-align: left;
}

.menu-content li {
    margin: 0.9rem 0;
}

.menu-content a {
    color: var(--text);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    border-radius: 14px;
    transition: background 0.25s ease, transform 0.25s ease;
    background: rgba(255, 255, 255, 0.06);
    min-height: 44px;
}

@media (max-width: 768px) {
    .menu-content a {
        font-size: clamp(1rem, 3vw, 1.25rem);
        min-height: 48px;
    }
}

.menu-content a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(6px);
}

.menu-tagline {
    font-size: 0.95rem;
    color: var(--muted);
    margin-top: 1.4rem;
    letter-spacing: 0.08em;
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
    color: var(--text);
    cursor: pointer;
    backdrop-filter: blur(16px);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.17);
}

@media (max-width: 768px) {
    .menu-close {
        width: 44px;
        height: 44px;
        top: 1rem;
        right: 1rem;
    }
}

/* Hero (Canvas + Brand) */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(197, 160, 89, 0.08), transparent 55%),
        radial-gradient(circle at 75% 20%, rgba(197, 160, 89, 0.05), transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(5, 5, 5, 0.85) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    z-index: 4;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem 1.5rem;
        min-height: 70vh;
        width: 100%;
    }
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    max-width: 860px;
    margin-top: 30vh;
    /* Push title to 30% from top */
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-top: 25vh;
        margin-bottom: 1rem;
    }
}

@keyframes shine {
    to {
        transform: translateX(105%);
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
}

.hero-highlights {
    display: grid;
    gap: 0.65rem;
    margin: 0 auto 2.5rem;
    max-width: 420px;
    padding: 0 1.2rem;
    list-style: none;
}

@media (max-width: 768px) {
    .hero-highlights {
        max-width: 100%;
        padding: 0 1rem;
        gap: 0.55rem;
    }
}

.hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 768px) {
    .hero-highlights li {
        font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    }
}

.hero-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    letter-spacing: 0.09em;
}

@media (max-width: 768px) {
    .hero-note {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        margin-top: 1rem;
    }
}

.hero-buttons {
    position: absolute;
    bottom: 6rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 3;
}

@media (max-width: 900px) {
    .hero-buttons {
        bottom: 2rem;
        right: 1.5rem;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        position: static;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.9rem;
    min-height: 44px;
    min-width: 160px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        min-height: 48px;
    }
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    color: var(--bg);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn.primary {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn.primary:hover {
    color: var(--bg);
}

.btn.secondary {
    border-color: var(--border);
    color: var(--text);
}

.btn.secondary:hover {
    color: var(--bg);
}

.quick-contacts {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 3;
}

@media (max-width: 900px) {
    .quick-contacts {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .quick-contacts {
        position: absolute;
        bottom: 1.5rem;
        left: 0;
        right: 0;
        margin-top: 0;
        justify-content: center;
        flex-direction: row;
        gap: 0.75rem;
        width: 100%;
        z-index: 10;
        padding: 0 1.25rem;
    }
}

.contact-btn {
    min-width: 180px;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    letter-spacing: 0.1em;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    padding: 0.95rem 1.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.35s ease;
    min-height: 44px;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

@media (max-width: 768px) {
    .contact-btn {
        flex: 1;
        min-width: 120px;
        padding: 0.75rem 1.5rem;
        min-height: 44px;
    }
}

.contact-btn:hover {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 22px 65px rgba(197, 160, 89, 0.25);
    transform: translateY(-2px);
}

/* Section cards + tonality */
section {
    scroll-margin-top: 100px;
}

.reveal {
    opacity: 1;
    transform: translateY(14px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
    transform: translateY(0);
}

.section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.94) 55%, rgba(0, 0, 0, 0.99) 100%);
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(197, 160, 89, 0.05), transparent 45%),
        radial-gradient(circle at bottom right, rgba(197, 160, 89, 0.03), transparent 40%);
    pointer-events: none;
}

.section h2 {
    position: relative;
    color: var(--text);
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .section h2 {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
        margin-bottom: 2rem;
    }
}

.section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1.2rem;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section h2::after {
        width: 40px;
        bottom: -0.9rem;
    }
}

.section p {
    max-width: 790px;
    margin: 0 auto 1.8rem;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 768px) {
    .section p {
        margin-bottom: 1.5rem;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
    padding: 2.5rem 2rem;
    color: var(--text);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 768px) {
    .card {
        padding: 1.8rem 1.5rem;
    }
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 35px 85px rgba(0, 0, 0, 0.8);
}

.card-title {
    margin-bottom: 1.15rem;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--text);
}

.card-text {
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.card-accent {
    color: var(--accent);
    font-weight: 700;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-category {
    position: relative;
}

.service-category h3 {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1rem;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    position: relative;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.2rem 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
}

@media (max-width: 768px) {
    .service-category li {
        padding: 1rem 1.2rem;
        margin-bottom: 0.8rem;
    }
}

.service-category li::after {
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, rgba(197, 160, 89, 0.1), rgba(0, 0, 0, 0) 60%);
    transform: skewX(-18deg);
    transition: transform 0.35s ease;
}

.service-category li:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
}

.service-category li:hover::after {
    transform: translateX(160%) skewX(-18deg);
}

.service-sub {
    display: block;
    color: var(--muted);
    margin-top: 0.45rem;
    font-size: 0.92rem;
    line-height: 1.4;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2.2rem;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.team-card {
    position: relative;
    background: var(--surface);
    border-radius: 4px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 95px rgba(0, 0, 0, 0.53);
    border-color: var(--accent);
}

.team-image-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--surface-strong);
    position: relative;
}

.team-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.45s ease;
}

@media (max-width: 768px) {
    .team-image {
        object-fit: cover;
        object-position: top;
    }
}

.team-card:hover .team-image {
    transform: scale(1.07) rotateZ(0.4deg);
}

.team-info {
    padding: 1.6rem 1.7rem 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .team-info {
        padding: 1.3rem 1.4rem 1.5rem;
    }
}

.team-info h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
    .team-info h3 {
        font-size: clamp(1.2rem, 3vw, 1.4rem);
    }
}

.team-role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .team-role {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
    }
}

.team-desc {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.3rem;
}

@media (max-width: 768px) {
    .team-desc {
        font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    }
}

.instagram-link {
    color: #FFFFFF;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.instagram-link .icon {
    font-size: 1.1rem;
    margin-right: 0;
}

.instagram-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Contact */
.contact-info {
    text-align: center;
    display: grid;
    gap: 1.8rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-info {
        gap: 1.5rem;
    }
}

.map {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
    .map {
        border-radius: 12px;
        height: 250px !important;
    }
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Footer */
footer {
    background: var(--bg);
    padding: 5rem 1rem 2rem;
    border-top: 1px solid var(--border);
    position: relative;
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 1rem 1.5rem;
    }
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.25));
}

@media (max-width: 768px) {
    .footer-logo {
        height: 70px;
    }
}

.footer-title {
    color: var(--text);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .footer-title {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }
}

.footer-tagline {
    color: var(--accent);
    font-size: 1.05rem;
    font-style: italic;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .footer-tagline {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .footer-socials {
        gap: 1rem;
    }
}

.footer-socials a {
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
}

.footer-socials a .icon {
    width: 20px;
    height: 20px;
    margin-right: 0;
    filter: brightness(0) invert(1);
    /* Ensure icons stay white */
}

.footer-socials a:hover {
    color: var(--bg);
    background: var(--accent);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.footer-bottom {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    width: 100%;
}

.footer-bottom p {
    color: rgba(232, 232, 232, 0.4);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes glitch {
    0% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }

    10% {
        clip-path: inset(10% 0 20% 0);
        transform: translate(-2px, -2px);
    }

    20% {
        clip-path: inset(20% 0 25% 0);
        transform: translate(2px, 2px);
    }

    30% {
        clip-path: inset(0 0 30% 0);
        transform: translate(-3px, 1px);
    }

    40% {
        clip-path: inset(10% 0 0 0);
        transform: translate(3px, -1px);
    }

    50% {
        clip-path: inset(0 0 20% 0);
        transform: translate(-1px, 2px);
    }

    60% {
        clip-path: inset(15% 0 15% 0);
        transform: translate(2px, -2px);
    }

    70% {
        clip-path: inset(0 0 10% 0);
        transform: translate(-2px, 1px);
    }

    80% {
        clip-path: inset(5% 0 25% 0);
        transform: translate(1px, -3px);
    }

    90% {
        clip-path: inset(10% 0 0 0);
        transform: translate(-1px, 2px);
    }

    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
}

.glitch {
    position: relative;
    display: inline-block;
    color: var(--surface);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
}

.glitch::before {
    animation: glitch 2.5s infinite linear;
    opacity: 0.8;
    color: var(--accent);
}

.glitch::after {
    animation: glitch 3.2s infinite linear;
    opacity: 0.6;
    color: var(--accent2);
}

.icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
    header {
        padding: 1rem 0;
    }

    nav {
        padding: 0 1.5rem;
        gap: 1rem;
    }

    .logo-text {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.2rem, 6vw, 3.2rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-highlights {
        max-width: 360px;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .quick-contacts {
        bottom: 1.75rem;
        right: 1.75rem;
    }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* --- Header & Nav --- */
    header {
        padding: 0.6rem 0;
    }

    nav {
        padding: 0 1rem;
        gap: 0.75rem;
    }

    /* Hide desktop nav links — hamburger takes over */
    nav ul,
    .nav-links {
        display: none;
    }

    /* Hide desktop lang-switcher — it lives inside the mobile menu overlay */
    .lang-switcher {
        display: none;
    }

    .book-btn-wrapper {
        display: none;
    }

    /* Show hamburger button */
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }

    .logo-img {
        height: 46px;
    }

    /* --- Hero Section --- */
    .hero {
        min-height: 100svh;
        height: 100svh;
    }

    /* Keep video on mobile — it loads the poster on slow connections */
    .hero-video {
        display: block;
    }

    .hero-content {
        padding: 1rem 1.25rem;
        justify-content: flex-end;
        padding-bottom: 6rem;
    }

    .hero-title {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
        margin-top: 0;
        /* remove the 30vh push — not needed on mobile */
        letter-spacing: 0.1em;
        margin-bottom: 0.75rem;
    }

    .hero-note {
        font-size: clamp(0.82rem, 3vw, 0.95rem);
        text-align: center;
        padding: 0 0.5rem;
    }



    .contact-btn {
        min-width: 140px;
        min-height: 44px;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    /* --- Buttons --- */
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.25rem;
        min-height: 48px;
        font-size: 0.9rem;
    }

    /* --- Sections --- */
    .section {
        padding: 3rem 0;
    }

    .container {
        width: calc(100% - 2rem);
        margin: 0 auto;
        padding: 0;
    }

    .section h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 2.5rem;
    }

    /* --- Services --- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .card {
        padding: 1.5rem 1.25rem;
    }

    /* --- Team --- */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }



    .team-info {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    /* --- Contact --- */
    #contact {
        padding-bottom: 6rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .map iframe {
        height: 220px !important;
    }

    /* --- Mobile overlay menu --- */
    .menu-overlay {
        padding: 1.5rem 1rem;
        align-items: center;
    }

    .menu-content {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .menu-content h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    /* Make lang switcher visible & prominent inside mobile menu */
    .menu-lang-switcher {
        margin-bottom: 1.25rem;
        gap: 0.75rem;
    }

    .menu-lang-switcher .lang-btn {
        min-width: 52px;
        min-height: 44px;
        font-size: 0.9rem;
    }

    .menu-content ul {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .menu-content a {
        font-size: 1.1rem;
        padding: 0.75rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .menu-close {
        width: 44px;
        height: 44px;
        top: 1rem;
        right: 1rem;
    }

    /* --- Footer --- */
    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-logo {
        height: 65px;
    }

    .footer-title {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .footer-tagline {
        font-size: clamp(0.82rem, 3vw, 0.95rem);
    }
}

/* ============================================================
   RESPONSIVE — Small phones (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        letter-spacing: 0.06em;
    }

    .section h2 {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
    }

    .contact-btn {
        min-width: unset;
        width: 100%;
    }

    .quick-contacts {
        right: 0.75rem;
        bottom: 1rem;
    }
}

/* ============================================================
   INTERIOR GALLERY & PROPAGANDA
   ============================================================ */

.interior-propaganda {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem;
    padding: 0 1rem;
}

.propaganda-title {
    color: var(--accent);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.15rem;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
}

.interior-propaganda p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.propaganda-highlight {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95) !important;
    letter-spacing: 0.05em;
    border-left: 2px solid var(--accent);
    padding-left: 1.2rem;
    margin-top: 1.5rem;
    text-align: left;
}

.interior-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    height: 350px;
}

.gallery-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), filter 0.6s ease;
    filter: brightness(0.8) contrast(1.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 45px rgba(197, 160, 89, 0.15);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    border-color: rgba(197, 160, 89, 0.8);
}

/* Grid Layout Adjustments (Perfect blocks) */
.item-1 {
    grid-column: span 3;
}

.item-2 {
    grid-column: span 3;
}

.item-3 {
    grid-column: span 2;
}

.item-4 {
    grid-column: span 2;
}

.item-5 {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .interior-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 280px;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4 {
        grid-column: span 1;
    }

    .item-5 {
        grid-column: span 2;
    }

    .item-5 img {
        object-position: center 30%;
    }
}

@media (max-width: 600px) {
    .interior-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5 {
        grid-column: span 1;
    }

    .propaganda-highlight {
        font-size: 0.95rem;
        padding-left: 1rem;
    }
}

/* ============================================================
   TELEGRAM BOT INTEGRATION
   ============================================================ */

/* Primary Button Highlighting */
.primary-btn {
    background: var(--accent);
    color: var(--bg) !important;
    /* Force dark text for contrast on gold */
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
}

.primary-btn:hover {
    background: transparent;
    color: var(--accent) !important;
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.6);
}

.primary-btn .icon {
    filter: brightness(0);
    /* Make telegram icon black initially */
    transition: filter 0.35s ease;
}

.primary-btn:hover .icon {
    filter: brightness(0) saturate(100%) invert(67%) sepia(48%) saturate(382%) hue-rotate(352deg) brightness(97%) contrast(93%);
    /* approx gold */
}

/* Nav Link */
.nav-book-link {
    display: flex;
    align-items: center;
    color: var(--accent) !important;
    font-weight: 600;
}

.nav-book-link:hover {
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

/* Floating Telegram Button */
.floating-telegram {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 65px;
    height: 65px;
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.floating-telegram img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    z-index: 2;
    transition: filter 0.3s ease;
}

.floating-telegram:hover {
    transform: scale(1.15) translateY(-5px);
    background: var(--accent);
}

.floating-telegram:hover img {
    filter: brightness(0);
    /* Turn icon black on gold hover */
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: pulse 2.5s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-telegram {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }

    .floating-telegram img {
        width: 28px;
        height: 28px;
    }
}