/* =====================================================
   Magiška Harmonija — Public Website Styles
   Premium Dark Edition — Video Hero
   ===================================================== */

/* ===== Google Fonts ===== */
/* NOTE: Inter naudojamas vietoj Jost - pilnas Lithuanian/latin-ext palaikymas */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&subset=latin,latin-ext&display=swap');

/* ===== CSS Variables — Dark Theme ===== */
:root {
    /* Dark backgrounds */
    --bg:             #0d0b0a;
    --bg-mid:         #141110;
    --bg-card:        #1a1613;
    --bg-raised:      #221d18;
    --border:         #2c2520;
    --border-light:   #3a3028;

    /* Legacy aliases (used in inline styles & templates) */
    --cream:          #0d0b0a;
    --beige:          #141110;
    --beige-dark:     #2c2520;
    --lavender:       #3d3050;
    --lavender-light: #1c1826;
    --gold:           #c9a96e;
    --gold-dark:      #a8854a;
    --gold-light:     #e8cc99;
    --brown:          #c8a97a;
    --brown-light:    #d4b896;
    --text-dark:      #f0e8dc;
    --text-mid:       #c4b49a;
    --text-muted:     #7a6a58;
    --white:          #1a1613;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;

    --transition:      0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:          1rem;
    --radius-lg:       1.5rem;
    --shadow:          0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-md:       0 8px 32px rgba(0, 0, 0, 0.55);
    --shadow-lg:       0 16px 56px rgba(0, 0, 0, 0.65);
    --shadow-glow:     0 0 40px rgba(201, 169, 110, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
}

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

a { color: var(--gold-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-dark);
}

/* ===== Scroll reveal base ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }

/* ===== Page transition overlay ===== */
.page-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.page-overlay.active { opacity: 1; pointer-events: all; }

/* ===== Navigation ===== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(13, 11, 10, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    padding: 0.6rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-nav.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 2px 32px rgba(0,0,0,0.5);
    background: rgba(13, 11, 10, 0.97);
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    transition: opacity var(--transition);
}
.site-logo:hover { opacity: 0.8; color: var(--text-dark); }

.site-logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
    filter: brightness(0.95);
}
.site-logo:hover img { transform: rotate(-3deg) scale(1.05); }

.site-logo span { color: var(--gold); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 3rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
    background: var(--gold);
    color: #0d0b0a;
    border-color: var(--gold);
    font-weight: 600;
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #0d0b0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-mid);
    border-color: rgba(201, 169, 110, 0.4);
}
.btn-outline:hover {
    background: rgba(201, 169, 110, 0.12);
    color: var(--gold-light);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201,169,110,0.15);
}

/* ===== Section spacing ===== */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--lavender));
    margin: 0.75rem auto 2.5rem;
    border-radius: 2px;
}

/* ===== Hero — Video Background ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #080604;
}

/* Video background */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.75;
    pointer-events: none;
}

/* Dark cinematic overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            105deg,
            rgba(8, 5, 3, 0.82) 0%,
            rgba(13, 9, 6, 0.6) 55%,
            rgba(8, 5, 3, 0.4) 100%
        ),
        linear-gradient(
            to top,
            rgba(5, 3, 2, 0.9) 0%,
            transparent 35%
        );
}

/* Floating orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 68%);
    pointer-events: none;
    z-index: 2;
    animation: floatOrb 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 48, 80, 0.18) 0%, transparent 68%);
    pointer-events: none;
    z-index: 2;
    animation: floatOrb 11s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, -30px) scale(1.07); }
}

/* Decorative overlay — no circles (video provides visual richness) */
.hero-deco {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

/* Ensure container fills full width in flex hero */
.hero .container {
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

/* Wide screens — anchor text firmly to the left */
@media (min-width: 1200px) {
    .hero .container {
        max-width: 100%;
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.4);
    padding: 0.35rem 1.1rem;
    border-radius: 2rem;
    margin-bottom: 1.75rem;
    animation: fadeSlideDown 0.8s cubic-bezier(0.4,0,0.2,1) both;
    backdrop-filter: blur(8px);
    background: rgba(201,169,110,0.08);
}
.hero-tag::before { content: '✦'; font-size: 0.6rem; }

.hero-title {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 300;
    color: #f8f0e4;
    margin-bottom: 1.5rem;
    line-height: 1.08;
    animation: fadeSlideUp 0.9s 0.15s cubic-bezier(0.4,0,0.2,1) both;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    position: relative;
}

/* Underline shimmer on hero title em */
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmerLine 3s ease-in-out infinite;
}
@keyframes shimmerLine {
    0%, 100% { opacity: 0.4; transform: scaleX(0.6); }
    50%       { opacity: 1;   transform: scaleX(1); }
}

.hero-text {
    font-size: 1.12rem;
    color: rgba(240, 232, 220, 0.85);
    margin-bottom: 2.75rem;
    max-width: 490px;
    line-height: 1.85;
    animation: fadeSlideUp 0.9s 0.3s cubic-bezier(0.4,0,0.2,1) both;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.9s 0.45s cubic-bezier(0.4,0,0.2,1) both;
}

/* ===== Hero scroll indicator ===== */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.7);
    animation: fadeIn 1s 1.2s both;
    z-index: 3;
}
.scroll-hint-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50%       { transform: scaleY(0.6); opacity: 1; }
}

/* ===== Entry animations ===== */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
}
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ===== Stats row (homepage) ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-raised); }
.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ===== Category Cards ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.25rem;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}
.category-card:hover::before { opacity: 1; }

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--lavender));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}
.category-card:hover::after { transform: scaleX(1); }

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,169,110,0.25);
    color: var(--text-dark);
}

.category-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform var(--transition);
    color: var(--gold);
    line-height: 1;
    opacity: 0.85;
}
.category-card:hover .category-icon {
    transform: scale(1.15) translateY(-4px);
    opacity: 1;
}

.category-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
}

/* ===== Gallery Grid ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.75rem;
}

.item-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition-slow);
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    position: relative;
}

.item-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
    z-index: 1;
}
.item-card:hover::before { opacity: 1; }

.item-card:hover {
    transform: translateY(-10px) scale(1.012);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
    border-color: rgba(201,169,110,0.2);
}

.item-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.item-card:hover .item-card-img {
    transform: scale(1.07);
}

.item-card-img-wrap {
    overflow: hidden;
    background: var(--bg-mid);
    position: relative;
}

/* Shimmer overlay on hover */
.item-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.06) 60%, transparent 80%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}
.item-card:hover .item-card-img-wrap::after {
    transform: translateX(100%);
}

.item-card-img-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-mid), var(--lavender-light));
    color: var(--text-muted);
    font-size: 3.5rem;
}

.item-card-body {
    padding: 1.4rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.item-card-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.item-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}
.item-card:hover .item-card-title { color: var(--gold); }

.item-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    flex: 1;
    line-height: 1.6;
}

.item-card-link {
    margin-top: 1.1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition), color var(--transition);
}
.item-card:hover .item-card-link {
    gap: 0.8rem;
    color: var(--gold);
}

/* ===== Filter buttons ===== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.4rem;
    border-radius: 2rem;
    border: 1.5px solid var(--border-light);
    background: var(--bg-card);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: 0;
}
.filter-btn span { position: relative; z-index: 1; }

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--gold);
    color: #0d0b0a;
    box-shadow: 0 4px 16px rgba(201,169,110,0.25);
    transform: translateY(-2px);
}
.filter-btn:hover::before,
.filter-btn.active::before { transform: scaleX(1); }

/* ===== About strip ===== */
.about-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: 1rem 0;
}
.about-strip-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
}

/* ===== Feature pills ===== */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.2);
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: background var(--transition), border-color var(--transition);
    backdrop-filter: blur(4px);
}
.feature-pill:hover {
    background: rgba(201,169,110,0.16);
    border-color: rgba(201,169,110,0.45);
}

/* ===== Single Item Page ===== */
.item-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.item-gallery .cover { grid-column: 1 / -1; }

.item-gallery img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.item-gallery img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.item-gallery .cover img { height: 480px; }

/* ===== Contact section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: background var(--transition);
}
.contact-info-item:hover { background: var(--bg-raised); }

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-raised), var(--lavender-light));
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* ===== Forms ===== */
.form-group { margin-bottom: 1.35rem; }

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    color: var(--text-mid);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid var(--border-light);
    border-radius: 0.85rem;
    background: var(--bg-card);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
    transform: translateY(-1px);
}

.form-textarea { resize: vertical; min-height: 140px; }

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(145deg, #1a1410 0%, #0d0b0a 100%);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    text-align: center;
    padding: 5.5rem 2rem;
    border-radius: var(--radius-lg);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: floatOrb 10s ease-in-out infinite alternate;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61,48,80,0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: floatOrb 13s ease-in-out infinite alternate-reverse;
}

.cta-banner h2 {
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
}
.cta-banner p {
    color: var(--text-mid);
    margin: 1rem 0 2.25rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}
.cta-banner .btn-primary { position: relative; z-index: 1; }

/* ===== Footer ===== */
.site-footer {
    background: #090706;
    color: var(--text-mid);
    padding: 4rem 0 1.5rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--lavender), var(--gold), transparent);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.footer-logo img { height: 50px; width: auto; opacity: 0.85; }
.footer-logo span { color: var(--gold); }

.footer-tagline {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}

/* Footer two-column grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-mid);
    font-size: 0.84rem;
    transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.79rem;
    color: var(--text-muted);
    text-align: center;
}

.social-links {
    display: flex;
    gap: 0.65rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0d0b0a;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}

/* ===== Breadcrumb ===== */
.breadcrumb-bar {
    padding: 1rem 0;
    font-size: 0.81rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.breadcrumb-bar a {
    color: var(--text-muted);
    transition: color var(--transition);
}
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar span { margin: 0 0.15rem; opacity: 0.5; }

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
}

.lightbox.open { display: flex; animation: fadeIn 0.3s ease both; }

.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 0.75rem;
    box-shadow: 0 24px 80px rgba(0,0,0,0.8);
    animation: lightboxZoomIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes lightboxZoomIn {
    from { transform: scale(0.88); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    line-height: 1;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.18);
    transform: rotate(90deg) scale(1.1);
}

/* ===== Marquee strip ===== */
.marquee-strip {
    background: #090706;
    border-top: 1px solid var(--border);
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
}
.marquee-track span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
}
.marquee-track span.gold { color: var(--gold); }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13,11,10,0.98);
        border-bottom: 1px solid var(--border-light);
        padding: 1.5rem;
        gap: 1.25rem;
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(24px);
    }
    .nav-links.open { display: flex; animation: fadeSlideDown 0.3s ease both; }
    .nav-toggle { display: flex; }

    .hero { min-height: 90vh; }
    .hero-title { font-size: 2.8rem; }
    .hero::before, .hero::after { display: none; }

    /* Feature pills — leave room for scroll-hint at bottom */
    .hero-content { padding-bottom: 4rem; }
    .feature-pills { display: none; }

    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Footer — single column on mobile */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-links { gap: 0.6rem; }
    .footer-tagline { letter-spacing: 0; }
    .social-links { margin-top: 0.5rem; }

    .item-gallery { grid-template-columns: 1fr; }
    .item-gallery .cover img { height: 320px; }
    .item-gallery img { height: 200px; }

    .section { padding: 4rem 0; }
    .stats-row { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .hero-deco { display: none; }
}

/* ===== Anti-Spam Honeypot — NEKEISTI ===== */
.customer-info {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
}
