:root {
    --accent: #af6643;
    --accent-glow: rgba(175, 102, 67, 0.2);
    --bg-primary: #151a25;
    --bg-secondary: #1a2332;
    --bg-card: linear-gradient(135deg, #1a2332 0%, #1f2937 100%);
    --bg-footer: #0f1419;
    --text-primary: #e8e8e8;
    --text-secondary: #d0d0d0;
    --text-muted: #888;
    --text-warm: #ccc0b0;
    --border-accent: rgba(175, 102, 67, 0.2);
    --banner-height: 0px;
}

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

html {
    scroll-padding-top: calc(var(--banner-height) + 80px);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
nav {
    position: fixed;
    top: var(--banner-height);
    width: 100%;
    background-color: rgba(21, 26, 37, 0.95);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
}

.nav-brand img {
    height: 40px;
    width: auto;
}

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

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.1rem;
}

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

/* Mobile menu header (logo shown in fullscreen nav) */
.nav-menu-header {
    display: none;
}

.nav-menu-logo {
    height: 50px;
    width: auto;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.25rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s;
    border-radius: 3px;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    padding-top: calc(var(--banner-height) + 64px);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 1rem;
    width: 100%;
}

.hero-logo-img {
    width: 250px;
    max-width: 80%;
    height: auto;
}

.hero-landscape-img {
    width: 600px;
    max-width: 100%;
    height: auto;
}

.logo {
    font-size: 6.5rem;
    color: var(--text-warm);
    font-weight: bold;
}

.slogan {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-style: italic;
}

.slogan2 {
    font-size: 1.5rem;
    color: var(--text-warm);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-story {
    font-size: 1.45rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.meteor-accent {
    color: var(--accent);
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section.hero {
    max-width: none;
}

h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Info Section */
.info-content {
    text-align: center;
    padding: 3rem;
}

.price-table-header {
    display: grid;
    grid-template-columns: 1fr 90px 90px;
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-accent);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-table .price-row {
    display: grid;
    grid-template-columns: 1fr 80px;
}

.price-table .price-row span:not(:first-child),
.price-table-header span:not(:first-child) {
    text-align: right;
}

.price-table--vat .price-row {
    grid-template-columns: 1fr 90px 90px;
}

.products-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.products-intro a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.products-intro a:hover {
    opacity: 0.8;
}

.product-note {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.product-note p + p {
    margin-top: 1rem;
}

.product-note a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.product-note a:hover {
    opacity: 0.8;
}

.product-note-muted {
    color: var(--text-muted);
    font-style: italic;
}

/* Services Section */
.services-list {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-accent);
}

.service-category {
    margin-bottom: 2rem;
}

.service-category h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.service-item:last-child {
    border-bottom: none;
}

.service-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}


.price-category + .price-category {
    margin-top: 2rem;
}

.price-category h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-accent);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: background 0.2s;
}

.price-row:hover {
    background: rgba(175, 102, 67, 0.07);
}

.price-row:last-child {
    border-bottom: none;
}

/* About Section */
.about-content {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-accent);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-content h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border-accent);
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p + p {
    margin-top: 0.75rem;
}

.about-content a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.about-content a:hover {
    opacity: 0.8;
}

.about-list {
    list-style: none;
    margin-top: 0.5rem;
}

.about-list li {
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: background 0.2s;
}

.about-list li:hover {
    background: rgba(175, 102, 67, 0.07);
}

.about-list li:last-child {
    border-bottom: none;
}

.reg-number {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Gallery */
.gallery {
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
}

.gallery-item {
    overflow: hidden;
    height: 480px;
    position: relative;
}

.gallery-credit {
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.03em;
    pointer-events: none;
}

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

.gallery-item--portrait img {
    object-position: center bottom;
}

.gallery-item--bottom img {
    object-position: left bottom;
}

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

@media (max-width: 868px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .gallery-item {
        height: 300px;
    }

    .gallery-item--portrait {
        height: 520px;
    }
}

/* Contact Section */
.contact-logo {
    display: block;
    width: 260px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(175, 102, 67, 0.35);
}

.contact-info {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-accent);
    text-align: center;
}

.contact-info h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-details {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-secondary);
}

.contact-details a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-details a:hover {
    opacity: 0.8;
}

.business-id {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.social-links {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-accent);
}

.social-links h4 {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0.3rem;
    transition: opacity 0.3s, transform 0.3s;
}

.social-link:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.social-link--facebook {
    background: #1877f2;
    color: #fff;
}

.social-link--tiktok {
    background: #010101;
    color: #fff;
    border: 1px solid #333;
}

.partners {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-accent);
}

.partners h4 {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.partners a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.partners a:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--bg-footer);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--border-accent);
}

.footer-eu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-accent);
}

.eu-logo {
    height: 120px;
    width: auto;
}

.eu-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 868px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(21, 26, 37, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 0;
        gap: 0;
        min-height: 100vh;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu-header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(175, 102, 67, 0.3);
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li.nav-menu-header {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(175, 102, 67, 0.3);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .nav-brand img {
        height: 35px;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 1rem;
        padding-top: calc(var(--banner-height) + 64px);
    }

    .hero-content {
        padding: 0.5rem;
    }

    .logo {
        font-size: 3rem;
    }

    .slogan {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .slogan2 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-story {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 0.95rem;
    }

    .nav-brand img {
        height: 30px;
    }

    nav {
        padding: 0.75rem 1rem;
    }

    .hero {
        padding: 0.5rem;
        min-height: 100vh;
        padding-top: calc(var(--banner-height) + 64px);
    }

    .hero-content {
        padding: 0.5rem;
    }

    .logo {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .slogan {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .slogan2 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-story {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    section {
        padding: 2rem 0.75rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}
