/* ============================================
   TABANSKX Barbershop Studio - Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-black: #0a0a0a;
    --color-dark: #111111;
    --color-dark-2: #1a1a1a;
    --color-dark-3: #222222;
    --color-gray: #888888;
    --color-light-gray: #cccccc;
    --color-white: #f5f5f5;
    --color-pure-white: #ffffff;
    --color-accent: #e84530;
    --color-accent-hover: #ff5a45;
    --color-accent-dark: #c43525;
    --color-accent-glow: rgba(232, 69, 48, 0.3);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--color-accent-glow);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --container-max: 1200px;
    --nav-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--color-accent);
    color: var(--color-pure-white);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 69, 48, 0.25) 0%, rgba(200, 50, 30, 0.1) 40%, transparent 70%);
    animation: preloaderGlow 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes preloaderGlow {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

.preloader-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.preloader-logo {
    width: 500px;
    max-width: 85vw;
    margin-bottom: 48px;
    animation: preloaderPulse 2s ease-in-out infinite;
    filter: brightness(1.4) contrast(1.15) drop-shadow(0 0 50px rgba(232, 69, 48, 0.5)) drop-shadow(0 0 100px rgba(232, 69, 48, 0.2));
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.7; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1.03); }
}

.preloader-bar {
    width: 400px;
    max-width: 75vw;
    height: 4px;
    background: var(--color-dark-3);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto 24px;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-hover), #ff8a65);
    border-radius: 4px;
    box-shadow: 0 0 24px rgba(232, 69, 48, 0.7), 0 0 60px rgba(232, 69, 48, 0.3);
    animation: preloaderBar 1.8s ease-out forwards;
}

@keyframes preloaderBar {
    to { width: 100%; }
}

.preloader-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gray);
    opacity: 0;
    animation: preloaderTextFade 1s ease 0.5s forwards;
}

@keyframes preloaderTextFade {
    to { opacity: 0.6; }
}

/* --- Navbar: Luxury Gold Line --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: var(--transition-slow);
    background: transparent;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 69, 48, 0.4), rgba(255, 180, 100, 0.3), rgba(232, 69, 48, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.navbar.scrolled::after {
    opacity: 1;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    height: var(--nav-height);
    text-decoration: none;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-pure-white);
    letter-spacing: 3px;
    transition: var(--transition);
    line-height: 1;
}

.nav-logo-skx {
    color: var(--color-accent);
}

/* Vintage subtitle under TABANSKX */
.nav-logo-sub {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.62rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 3px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.nav-logo-sub-line {
    color: rgba(255, 200, 150, 0.55);
    letter-spacing: 3px;
    font-weight: 400;
}

.navbar.scrolled .nav-logo-text {
    font-size: 1.4rem;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: brightness(1.3) contrast(1.15) saturate(1.2);
}

.navbar.scrolled .nav-logo img {
    height: 48px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    height: var(--nav-height);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    height: var(--nav-height);
}

.nav-menu-booking,
.nav-menu-auth,
.nav-menu-lang {
    display: none;
}

.mobile-lang-switch {
    display: flex;
    gap: 8px;
    padding: 16px;
}

.mobile-lang-btn {
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-dark-3);
    background: transparent;
    color: var(--color-gray);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-lang-btn.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.nav-link {
    display: flex;
    align-items: center;
    height: var(--nav-height);
    padding: 0 14px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200, 200, 200, 0.7);
    white-space: nowrap;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 20px;
    background: radial-gradient(ellipse at bottom, rgba(232, 69, 48, 0.15), transparent);
    transition: width 0.4s ease;
    pointer-events: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-pure-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-btn {
    display: inline-block;
    background: transparent;
    color: var(--color-accent) !important;
    border: 1px solid var(--color-accent);
    border-radius: 0;
    padding: 10px 28px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-accent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.nav-btn::before {
    display: none;
}

/* --- Auth Button --- */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(200, 200, 200, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-auth-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.nav-auth:hover {
    color: var(--color-pure-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-auth:hover .nav-auth-icon {
    stroke: var(--color-accent);
}

.nav-btn:hover {
    color: var(--color-pure-white) !important;
    transform: none;
    box-shadow: 0 0 20px rgba(232, 69, 48, 0.3);
}

.nav-btn:hover::after {
    transform: translateY(0);
}

/* --- Language Switcher --- */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--color-light-gray);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-current:hover {
    border-color: rgba(232, 69, 48, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
    overflow: hidden;
}

.lang-arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 140px;
    background: var(--color-dark);
    border: 1px solid var(--color-dark-3);
    border-radius: 6px;
    padding: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 1002;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 4px;
    color: var(--color-gray);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
}

.lang-option.active {
    color: var(--color-accent);
}

.lang-option.active::after {
    content: '';
    margin-left: auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-pure-white);
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 69, 48, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 69, 48, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(232, 69, 48, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-logo {
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease 0.2s both;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    width: clamp(320px, 45vw, 520px);
    height: auto;
    filter: brightness(1.3) contrast(1.15) saturate(1.2);
    filter: drop-shadow(0 0 80px rgba(232, 69, 48, 0.12));
}

/* Keep old classes for compatibility */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title-line {
    display: block;
}

.hero-skx {
    color: var(--color-accent);
    position: relative;
}

.hero-title-line.accent {
    color: var(--color-accent);
    font-size: 0.55em;
    font-weight: 700;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -18px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 18px auto 0;
    color: var(--color-accent);
    animation: fadeInUp 0.8s ease 1s both;
    z-index: 1;
    transition: var(--transition);
}

.hero-scroll-arrow svg {
    width: 42px;
    height: 42px;
    animation: bounceArrow 2s ease-in-out infinite;
}

.hero-scroll-arrow:hover {
    color: var(--color-accent-hover);
    transform: scale(1.2);
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Sections --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-pure-white);
}

.accent {
    color: var(--color-accent);
}

/* --- About Section --- */
.about {
    background: var(--color-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-light-gray);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-dark-3);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- About Section Background --- */
.about {
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 -30px 60px -10px rgba(232,69,48,0.25), 0 30px 60px -10px rgba(232,69,48,0.25);
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/salon-interior.png') center/cover no-repeat;
    filter: blur(1px) brightness(0.3);
    transform: scale(1.05);
    z-index: 0;
    opacity: var(--about-bg-opacity, 0);
    transition: opacity 0.1s linear;
}

.about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, rgba(17,17,17,0.4) 25%, transparent 45%, transparent 55%, rgba(17,17,17,0.4) 75%, var(--color-dark) 100%);
    z-index: 0;
}

.about-glow-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.about > .container {
    position: relative;
    z-index: 1;
}

.about-brand {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
}

.about-brand-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.about-brand-name {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: #fff;
    text-shadow: 0 0 20px rgba(232,69,48,0.3), 0 0 60px rgba(232,69,48,0.1);
    animation: brandGlow 5s ease-in-out infinite;
    position: relative;
}

.about-brand-name .accent {
    color: var(--color-accent);
    text-shadow: 0 0 15px rgba(232,69,48,0.5), 0 0 40px rgba(232,69,48,0.2);
}

@keyframes brandGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(232,69,48,0.2), 0 0 60px rgba(232,69,48,0.08); }
    50% { text-shadow: 0 0 30px rgba(232,69,48,0.35), 0 0 70px rgba(232,69,48,0.12); }
}

.about-brand-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 8px;
    color: var(--color-gray);
    font-weight: 300;
    animation: brandGlow 5s ease-in-out infinite 1s;
}

/* --- Services Section --- */
.services {
    background: var(--color-black);
}

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

.service-card {
    background: var(--color-dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: scale(1.03);
    border-color: rgba(232, 69, 48, 0.4);
    box-shadow:
        0 0 20px rgba(232,69,48,0.15),
        0 0 60px rgba(232,69,48,0.08),
        0 20px 60px rgba(0,0,0,0.5);
}

.service-card.featured {
    border-color: rgba(232, 69, 48, 0.35);
}
.service-card.featured:hover {
    border-color: rgba(232, 69, 48, 0.6);
    box-shadow:
        0 0 25px rgba(232,69,48,0.25),
        0 0 80px rgba(232,69,48,0.12),
        0 20px 60px rgba(0,0,0,0.5);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    background: var(--color-accent);
    color: var(--color-pure-white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(232,69,48,0.4);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
}
.service-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50px;
    background: linear-gradient(transparent, var(--color-dark));
    pointer-events: none;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin: 0 0 20px;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-icon {
    opacity: 0.9;
    transform: scale(1.1);
}

/* No-image card gets padding */
.service-card:not(:has(.service-image)) {
    padding: 40px 32px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card-body {
    padding: 24px 28px 28px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body::before {
    content: '';
    position: absolute;
    top: -40px; left: -20px; right: -20px; bottom: -20px;
    background: var(--card-bg, none) center/cover no-repeat;
    filter: blur(25px) brightness(0.3) saturate(1.2);
    z-index: -1;
    opacity: 0.7;
    transition: opacity 0.4s;
}
.service-card:hover .service-card-body::before {
    opacity: 0.9;
}
.service-card-body::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 100%);
    z-index: -1;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-pure-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.service-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    flex: 1 0 auto;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
    flex-wrap: nowrap;
}
.service-footer .service-duration { flex-shrink: 1; }
.service-footer .service-price { flex-shrink: 0; white-space: nowrap; }

.service-duration {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(232,69,48,0.3);
}
.service-price-from {
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(232,69,48,0.65);
    text-transform: lowercase;
    letter-spacing: 0.5px;
    margin-right: 2px;
    text-shadow: none;
    font-style: italic;
}

/* --- Products Section --- */
.products {
    background: var(--color-dark);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-gray);
    margin-top: 12px;
    font-weight: 300;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray);
    background: var(--color-dark-2);
    border: 1px solid var(--color-dark-3);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--color-white);
    border-color: rgba(232, 69, 48, 0.3);
}

.filter-btn.active {
    background: var(--color-accent);
    color: var(--color-pure-white);
    border-color: var(--color-accent);
}

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

.products-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-dark-3);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card {
    background: var(--color-dark-2);
    border: 1px solid var(--color-dark-3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 69, 48, 0.2);
    box-shadow: var(--shadow-md);
}

.product-card.hidden {
    display: none;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
}

.product-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.3;
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--color-accent);
    color: var(--color-pure-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-info .product-footer { margin-top: auto; }

.product-brand {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-pure-white);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.82rem;
    color: var(--color-gray);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-desc.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.product-more-btn {
    background: none;
    border: none;
    color: var(--color-accent);
    font: inherit;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.product-more-btn:hover { text-decoration: underline; }

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--color-dark-3);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-pure-white);
}

.old-price {
    font-size: 0.85rem;
    color: var(--color-gray);
    font-weight: 400;
    margin-right: 4px;
}

.product-add-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-pure-white);
    background: var(--color-accent);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.product-add-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

.products-cta {
    text-align: center;
    margin-top: 48px;
}

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

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-filters {
        gap: 6px;
        margin-bottom: 24px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 4px 6px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .product-filters::-webkit-scrollbar { display: none; }

    .filter-btn {
        padding: 7px 14px;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    .product-card {
        border-radius: 12px;
    }
    .product-info {
        padding: 12px 14px 14px;
    }
    .product-name {
        font-size: 0.88rem;
        margin-bottom: 4px;
        line-height: 1.25;
    }
    .product-desc {
        display: none;
    }
    .product-footer {
        padding-top: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .product-price {
        font-size: 1rem;
    }
    .product-add-btn {
        padding: 7px 10px;
        font-size: 0.68rem;
        letter-spacing: 0.3px;
        width: 100%;
    }
    .product-tag {
        top: 8px;
        left: 8px;
        padding: 3px 9px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
        gap: 12px;
    }
    .product-info {
        padding: 10px 12px 12px;
    }
    .product-name {
        font-size: 0.82rem;
    }
    .product-price {
        font-size: 0.95rem;
    }
}

/* --- Gallery Section --- */
.gallery {
    background: var(--color-dark);
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 1 / 1;          /* uniform 1:1 grid — matches admin crop editor */
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* Ensure anchor + image fill the whole tile (otherwise aspect-ratio on parent + height:100% on img shrinks to natural size) */
.gallery-item > a,
.gallery-item > div.gallery-placeholder {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

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

/* legacy hero span — now neutralized so all tiles are uniform 1:1 */
.gi-1 { grid-row: auto; grid-column: auto; }

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-dark-2);
    border: 2px dashed var(--color-dark-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-gray);
    border-radius: var(--radius-md);
}

.gallery-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
}

.gallery-placeholder span {
    font-size: 0.85rem;
    opacity: 0.6;
}

.gallery-note,
.team-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.8rem;
    color: var(--color-gray);
    opacity: 0.6;
    font-style: italic;
}

/* --- Team Section --- */
.team {
    background: var(--color-black);
}

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

.team-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--color-dark);
    border: 1px solid var(--color-dark-3);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 69, 48, 0.2);
}

.team-avatar {
    margin-bottom: 24px;
}

.team-placeholder-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--color-dark-2);
    border: 3px solid var(--color-dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
}

.team-placeholder-avatar svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-pure-white);
}

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

.team-exp {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* --- Booking Section --- */
.booking {
    background: var(--color-dark);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.booking-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--color-pure-white);
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--color-light-gray);
}

.booking-benefits svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-accent);
}

.booking-contact-alt {
    padding: 24px;
    background: var(--color-dark-2);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-dark-3);
}

.booking-contact-alt p {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.booking-phone {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.booking-phone:hover {
    color: var(--color-accent-hover);
}

/* Form Styles */
.booking-form {
    background: var(--color-dark-2);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-dark-3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-light-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-dark);
    border: 1px solid var(--color-dark-3);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-size: 0.95rem;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-group input::placeholder {
    color: var(--color-gray);
    opacity: 0.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* --- Contact Section --- */
.contact {
    background: var(--color-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--color-dark);
    border: 1px solid var(--color-dark-3);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(232, 69, 48, 0.2);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--color-accent);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--color-pure-white);
}

.contact-card p,
.contact-card a {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--color-accent);
}

.contact-detail-note {
    font-size: 0.75rem !important;
    opacity: 0.5;
    font-style: italic;
}

.contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    border: 1px solid var(--color-dark-3);
    border-radius: 50%;
    color: var(--color-gray);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--color-pure-white);
    border-color: var(--color-accent);
    background: var(--color-accent);
    transform: translateY(-2px);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--color-dark);
    border: 2px dashed var(--color-dark-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--color-gray);
    border-radius: var(--radius-lg);
}

.map-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.3;
}

.map-placeholder p {
    font-size: 1rem;
    font-weight: 500;
}

.map-placeholder span {
    font-size: 0.8rem;
    opacity: 0.5;
    font-style: italic;
}

/* --- Footer --- */
.footer {
    background: var(--color-dark);
    border-top: 1px solid var(--color-dark-3);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand img {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-pure-white);
}

.footer-links a,
.footer-links p {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gray);
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--color-dark-3);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-gray);
}

/* --- Modal --- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-dark);
    border: 1px solid var(--color-dark-3);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
    color: var(--color-gray);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-white);
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--color-accent);
}

.modal-icon svg {
    width: 100%;
    height: 100%;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-pure-white);
}

.modal-content p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 24px;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    html, body {
        overflow-x: hidden;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        position: relative;
        z-index: 1003;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
    }

    .nav-logo-text {
        font-size: 1.45rem;
        letter-spacing: 4px;
        line-height: 1;
    }

    .nav-logo-sub {
        display: inline-block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-width: 100vw;
        background:
            radial-gradient(ellipse 80% 40% at 50% 0%, rgba(232,69,48,0.10), transparent 70%),
            radial-gradient(ellipse 70% 50% at 50% 100%, rgba(180,120,60,0.08), transparent 70%),
            linear-gradient(180deg, #0c0a08 0%, #14110d 45%, #0a0807 100%);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 26px) 28px calc(env(safe-area-inset-bottom, 0px) + 18px);
        gap: 0;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, transform 0.45s cubic-bezier(.16,1,.3,1), visibility 0s linear 0.45s;
        box-shadow: none;
        overflow: hidden;
        z-index: 999;
    }

    /* Vintage paper-grain overlay */
    .nav-menu::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            repeating-linear-gradient(0deg, rgba(255,210,160,0.025) 0 1px, transparent 1px 3px),
            repeating-linear-gradient(90deg, rgba(255,210,160,0.018) 0 1px, transparent 1px 3px);
        mix-blend-mode: overlay;
        pointer-events: none;
        opacity: 0.6;
    }

    /* Vintage corner ornaments */
    .nav-menu::after {
        content: '';
        position: absolute;
        left: 28px;
        right: 28px;
        top: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 6px);
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(232,69,48,0.55) 20%, rgba(255,200,140,0.6) 50%, rgba(232,69,48,0.55) 80%, transparent 100%);
        box-shadow: 0 0 12px rgba(232,69,48,0.35);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease, transform 0.45s cubic-bezier(.16,1,.3,1), visibility 0s;
    }

    .nav-menu li {
        position: relative;
        list-style: none;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.4s ease, transform 0.5s cubic-bezier(.16,1,.3,1);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.08s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.13s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.18s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.23s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.28s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.33s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.38s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.44s; }
    .nav-menu.active li:nth-child(9) { transition-delay: 0.50s; }
    .nav-menu.active li:nth-child(10){ transition-delay: 0.56s; }

    /* Dotted vintage separator between links */
    .nav-menu > li:not(.nav-menu-booking):not(.nav-menu-auth):not(.nav-menu-lang) + li:not(.nav-menu-booking):not(.nav-menu-auth):not(.nav-menu-lang) {
        border-top: 1px dashed rgba(255,210,160,0.10);
    }

    .nav-link {
        height: auto;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.35rem;
        letter-spacing: 4px;
        padding: 13px 6px;
        width: 100%;
        border-radius: 0;
        color: rgba(245, 235, 220, 0.88);
        text-transform: uppercase;
        justify-content: center;
        position: relative;
        background: transparent !important;
        gap: 14px;
    }

    /* Vintage filigree dot before each link */
    .nav-link::before {
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(232, 69, 48, 0.55);
        box-shadow: 0 0 10px rgba(232,69,48,0.5);
        margin-right: 14px;
        flex-shrink: 0;
        position: static;
        transform: none;
        opacity: 0.75;
        transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    }

    .nav-link::after {
        content: '✦';
        display: block;
        position: static;
        background: none;
        font-size: 0.75rem;
        color: rgba(255, 210, 160, 0.35);
        transform: none;
        height: auto;
        width: auto;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: transparent !important;
        color: #fff;
    }

    .nav-link.active {
        color: #fff;
        text-shadow: 0 0 16px rgba(232,69,48,0.85), 0 0 4px rgba(232,69,48,0.6);
    }

    .nav-link.active::before,
    .nav-link:hover::before {
        width: 6px;
        height: 6px;
        transform: scale(1.5);
        opacity: 1;
        background: var(--color-accent);
        box-shadow: 0 0 16px rgba(232,69,48,0.9);
    }

    .nav-link.active::after {
        opacity: 1;
        color: var(--color-accent);
    }

    .nav-right .nav-btn,
    .nav-right .lang-switcher,
    .nav-right .nav-auth {
        display: none;
    }

    .nav-right {
        gap: 0;
    }

    .nav-menu-booking,
    .nav-menu-auth,
    .nav-menu-lang {
        display: block !important;
        border-top: none !important;
    }

    .nav-menu-booking { margin-top: 18px; }
    .nav-menu-auth   { margin-top: 10px; }
    .nav-menu-lang   { margin-top: 14px; }

    .nav-menu-booking .nav-btn {
        display: block;
        text-align: center;
        width: 100%;
        padding: 14px 24px;
        font-family: var(--font-heading);
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 5px;
        color: #fff !important;
        background: linear-gradient(180deg, #e84530 0%, #c43525 100%);
        border: 1px solid rgba(255, 200, 140, 0.45);
        border-radius: 2px;
        box-shadow:
            inset 0 1px 0 rgba(255, 220, 180, 0.3),
            inset 0 -2px 0 rgba(0,0,0,0.25),
            0 0 22px rgba(232, 69, 48, 0.35),
            0 6px 16px rgba(0,0,0,0.5);
        position: relative;
    }

    .nav-menu-booking .nav-btn::before,
    .nav-menu-booking .nav-btn::after {
        content: '◆' !important;
        position: absolute !important;
        top: 50% !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        transform: translateY(-50%) !important;
        color: rgba(255, 220, 180, 0.6) !important;
        font-size: 0.6rem !important;
        opacity: 1 !important;
        margin: 0 !important;
        display: block !important;
        animation: none !important;
    }
    .nav-menu-booking .nav-btn::before { left: 14px !important; }
    .nav-menu-booking .nav-btn::after  { right: 14px !important; }

    .nav-menu-auth #authBtnMobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 11px 18px;
        background: transparent;
        color: rgba(245, 235, 220, 0.85);
        border: 1px solid rgba(255, 210, 160, 0.25);
        border-radius: 2px;
        font-family: var(--font-heading);
        font-size: 0.75rem;
        letter-spacing: 4px;
        text-transform: uppercase;
        width: 100%;
        height: auto;
    }

    .nav-menu-auth #authBtnMobile::before {
        content: '✧';
        display: inline-block;
        margin-right: 6px;
        color: var(--color-accent);
        font-size: 0.85rem;
        background: none;
        width: auto;
        height: auto;
        position: static;
        opacity: 1;
        box-shadow: none;
        transform: none;
    }

    .nav-menu-auth #authBtnMobile::after {
        display: none;
    }

    .mobile-lang-switch {
        display: flex;
        gap: 0;
        padding: 0;
        justify-content: center;
        position: relative;
    }

    .mobile-lang-switch::before,
    .mobile-lang-switch::after {
        content: '— ❦ —';
        flex: 0 0 auto;
        align-self: center;
        color: rgba(255, 210, 160, 0.30);
        font-size: 0.7rem;
        letter-spacing: 4px;
        padding: 0 12px;
    }

    .mobile-lang-btn {
        padding: 7px 16px;
        background: transparent;
        border: 1px solid rgba(255, 210, 160, 0.20);
        border-radius: 2px;
        color: rgba(245, 235, 220, 0.7);
        font-family: var(--font-heading);
        font-size: 0.8rem;
        letter-spacing: 3px;
        margin: 0 4px;
    }

    .mobile-lang-btn.active {
        background: transparent;
        border-color: var(--color-accent);
        color: var(--color-accent);
        box-shadow: 0 0 14px rgba(232,69,48,0.35), inset 0 0 0 1px rgba(232,69,48,0.4);
    }

    /* Burger above menu when open */
    .nav-toggle {
        z-index: 1002;
    }

    .navbar {
        z-index: 1000;
    }

    /* When menu open, give navbar a slight vintage glass for the logo strip */
    .nav-menu.active ~ * .navbar,
    body:has(.nav-menu.active) .navbar {
        background: transparent;
    }

    /* Compact-height tweaks: shrink spacing/font when viewport is short */
    @media (max-height: 720px) {
        .nav-link { font-size: 1.15rem; padding: 10px 6px; letter-spacing: 3px; }
        .nav-menu-booking { margin-top: 12px; }
        .nav-menu-booking .nav-btn { padding: 12px 22px; font-size: 0.78rem; }
        .nav-menu-auth #authBtnMobile { padding: 9px 16px; font-size: 0.7rem; }
    }
    @media (max-height: 620px) {
        .nav-link { font-size: 1rem; padding: 8px 6px; letter-spacing: 2.5px; }
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        letter-spacing: 3px;
        font-size: 0.9rem;
    }

    .hero-scroll-arrow {
        margin-top: 14px;
    }

    .hero-scroll-arrow svg {
        width: 34px;
        height: 34px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        order: -1;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-brand {
        text-align: center;
    }

    .about-brand-name {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .about-brand-sub {
        font-size: 0.85rem;
        letter-spacing: 5px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .service-card {
        border-radius: 12px;
    }
    .service-image {
        height: 120px;
    }
    .service-image::after {
        height: 30px;
    }
    .service-card:not(:has(.service-image)) {
        padding: 22px 18px;
    }
    .service-card-body {
        padding: 14px 14px 16px;
    }
    .service-icon {
        width: 34px;
        height: 34px;
        margin: 0 0 12px;
    }
    .service-name {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    .service-desc {
        display: none;
    }
    .service-footer {
        padding-top: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .service-duration {
        font-size: 0.7rem;
    }
    .service-price {
        font-size: 1rem;
    }
    .service-badge {
        top: 8px;
        right: 8px;
        padding: 3px 9px;
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    /* Mobile gallery — match Team section layout: 1 column, max-width 400px, centered */
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 20px;
    }

    .gallery-item {
        border-radius: var(--radius-lg);
    }

    .gi-1 {
        grid-row: auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-form {
        padding: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        padding: 0 16px;
    }

    .btn {
        padding: 14px 28px;
        width: 100%;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        gap: 12px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .about-brand-name {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .about-brand-sub {
        font-size: 0.7rem;
        letter-spacing: 4px;
    }

    .about-lead {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-text p {
        font-size: 0.85rem;
    }

    .section {
        padding: 56px 0;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
        gap: 16px;
    }
}
