:root {
    /* Theme Colors: Dark Granite & Noble Burgundy */
    --primary: #6b1d2e;
    --on-primary: #ffffff;
    --primary-container: #3d0a14;
    --on-primary-container: #ffdad9;
    --surface: #1a1a2e;
    --on-surface: #e6e1e5;
    --background: #0f0f1a;
    --surface-variant: #2d2d44;
    
    /* Glass Effect Variables */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --glass-blur: 20px;
    
    /* Typography */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
    background-attachment: fixed;
    color: var(--on-surface);
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated background gradient orbs */
body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

body::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

body::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #2d1a4a 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Global Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, .brand, .display, .headline {
    font-family: var(--font-title);
    font-weight: 600;
}

/* --- Navigation Glass Effect --- */
nav.top {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px var(--glass-shadow);
}

/* --- Hero Section --- */
.hero {
    padding: 6rem 1.5rem 4rem;
    position: relative;
    background: linear-gradient(180deg, rgba(107, 29, 46, 0.2) 0%, rgba(15, 15, 26, 0.8) 100%);
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    margin: 0 auto 2rem;
    max-width: 100%;
}

/* Glassmorphism overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(2px);
    z-index: 0;
    pointer-events: none;
}

/* Decorative glass circles */
.hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 29, 46, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
    pointer-events: none;
}

.hero .display {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    font-weight: 700;
    position: relative;
    z-index: 1;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin: 0 auto;
}

.hero .headline {
    color: var(--on-surface);
    opacity: 0.9;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
}

.hero .chip {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.hero .chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero CTA Button Glass */
.hero .button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, #8b2a3d 100%) !important;
    box-shadow: 0 8px 32px rgba(107, 29, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero .button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(107, 29, 46, 0.6);
}

/* --- Services --- */
.services-section {
    padding: 2rem 1rem;
    width: 100%;
}

.services-section .max {
    display: block;
}

.services-section h3 {
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Glass Card Effect */
.service-card {
    height: 100%;
    background: var(--glass-bg) !important;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem !important;
    position: relative;
    overflow: hidden;
}

/* Inner glow effect */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffdad9, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h5 {
    margin-bottom: 0.75rem;
}

.service-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* --- Contacts --- */
.contacts-section {
    padding: 2rem 1rem;
    width: 100%;
}

.contacts-section .max {
    display: block;
}

.contact-card-primary {
    background: linear-gradient(135deg, rgba(107, 29, 46, 0.6) 0%, rgba(61, 10, 20, 0.8) 100%) !important;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    color: #ffffff !important;
    box-shadow: 0 8px 32px var(--glass-shadow);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.contact-card-primary h4, 
.contact-card-primary h6, 
.contact-card-primary p, 
.contact-card-primary i {
    color: #ffffff !important;
}

.contact-card-primary p {
    opacity: 0.85;
}

.contact-card-primary a.inverse-link {
    color: #ffdad9 !important;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-card-primary a.inverse-link:hover {
    color: #ffffff !important;
}

.contact-card-secondary {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
    height: 100%;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-card-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Glass Buttons */
.contact-card-secondary .button.fill {
    background: linear-gradient(135deg, var(--primary) 0%, #8b2a3d 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(107, 29, 46, 0.4);
    transition: all 0.3s ease;
}

.contact-card-secondary .button.fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 29, 46, 0.6);
}

.contact-card-secondary .button.border {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card-secondary .button.border:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-row:hover {
    background: rgba(255, 255, 255, 0.06);
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-row i {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* --- Footer Glass --- */
footer {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-top: 1px solid var(--glass-border);
    padding: 2rem 1rem !important;
}

/* --- Utilities --- */
.round-28 { 
    border-radius: 24px !important; 
}

.text-justify {
    text-align: justify;
}

/* Link styling adjustments */
a.inverse-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
}

a.inverse-link:hover {
    border-bottom: 1px solid currentColor;
}

/* Responsive Gaps and Container */
.max {
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Grid gaps */
.grid {
    gap: 1.5rem;
    margin: 0;
    width: 100%;
}

/* ===== RESPONSIVE / MOBILE STYLES ===== */

/* Large screens */
@media (min-width: 993px) {
    .hero {
        padding: 8rem 2rem 6rem;
    }
    
    .services-section,
    .contacts-section {
        padding: 3rem 1rem;
    }
    
    .service-card {
        padding: 2rem !important;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero {
        padding: 5rem 1.5rem 3.5rem;
        border-radius: 0 0 30px 30px;
    }
    
    .hero .display {
        font-size: 2.8rem;
    }
    
    .hero .headline {
        font-size: 1.2rem;
    }
    
    .grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.25rem !important;
    }
    
    .contact-card-primary,
    .contact-card-secondary {
        padding: 1.5rem;
    }
}

/* Mobile phones */
@media (max-width: 600px) {
    body::before,
    body::after {
        opacity: 0.2;
    }
    
    body::before {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -80px;
    }
    
    body::after {
        width: 200px;
        height: 200px;
        bottom: -60px;
        left: -60px;
    }
    
    /* Navigation */
    nav.top {
        padding: 0.5rem 0.75rem !important;
        position: sticky;
        top: 0;
    }
    
    nav.top .row {
        gap: 0.5rem;
    }
    
    nav.top .brand {
        font-size: 1rem !important;
    }
    
    nav.top .button.circle {
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Hero Section */
    .hero {
        padding: 4rem 1rem 2.5rem;
        border-radius: 0 0 24px 24px;
        margin-bottom: 1rem;
    }
    
    .hero .max {
        padding: 0;
    }
    
    .hero::after {
        width: 120px;
        height: 120px;
        top: -40px;
        right: -40px;
    }
    
    .hero .display {
        font-size: 2rem;
        letter-spacing: 0.02em;
        margin-bottom: 0.5rem;
    }
    
    .hero .headline {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero .row.center-align {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero .chip {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
        margin: 0.15rem;
    }
    
    .hero .space.large {
        height: 1rem !important;
    }
    
    .hero .button.large {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.85rem;
    }
    
    .hero .button.large i {
        font-size: 1.1rem;
    }
    
    /* Sections */
    .services-section,
    .contacts-section,
    .catalog-section {
        padding: 1.25rem 0.5rem;
    }
    
    .services-section h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    
    /* Services Grid - 2 columns on mobile */
    .services-section .grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem !important;
    }
    
    .services-section .grid > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    .service-card {
        padding: 1rem !important;
        border-radius: 16px !important;
        height: 100%;
    }
    
    .service-card i {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card h5 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
        line-height: 1.4;
        margin: 0;
    }
    
    /* Contact Cards */
    .contacts-section .grid {
        display: flex !important;
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .contacts-section .grid > div {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-card-primary,
    .contact-card-secondary {
        padding: 1.25rem;
        border-radius: 16px !important;
    }
    
    .contact-card-primary h4,
    .contact-card-secondary h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-card-secondary p {
        font-size: 0.9rem;
    }
    
    .contact-row {
        gap: 0.75rem;
        padding: 0.5rem;
        margin-bottom: 0.75rem;
        border-radius: 12px;
    }
    
    .contact-row i {
        font-size: 1.2rem;
        min-width: 24px;
    }
    
    .contact-row h6 {
        font-size: 0.85rem;
        margin-bottom: 0.15rem;
    }
    
    .contact-row p {
        font-size: 0.8rem;
    }
    
    .contact-card-secondary .vertical {
        gap: 0.75rem;
    }
    
    .contact-card-secondary .button {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem !important;
        font-size: 0.85rem;
    }
    
    .contact-card-secondary .space {
        height: 0.5rem !important;
    }
    
    /* General Spacing */
    .max {
        padding: 0 0.5rem;
    }
    
    .space.large {
        height: 1rem !important;
    }
    
    /* Footer */
    footer {
        padding: 1.25rem 1rem !important;
    }
    
    footer p {
        font-size: 0.75rem;
        margin: 0.25rem 0;
    }
    
    .round-28 {
        border-radius: 16px !important;
    }
}

/* ===== CATALOG / PRICE LIST ===== */
.catalog-section {
    padding: 2rem 1rem;
    width: 100%;
}

.catalog-section .max {
    display: block;
}

.catalog-section .subtitle {
    opacity: 0.7;
    margin-top: -0.5rem;
}

.category-title {
    font-family: var(--font-title);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
    color: #ffdad9;
}

.catalog-grid {
    gap: 1rem !important;
}

/* Product Card */
.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, #8b2a3d 100%);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(107, 29, 46, 0.5);
}

.product-badge.secondary {
    background: linear-gradient(135deg, #2d4a6b 0%, #3d6b8b 100%);
    box-shadow: 0 2px 10px rgba(45, 74, 107, 0.5);
}

.product-badge.premium {
    background: linear-gradient(135deg, #6b5a2d 0%, #a08840 100%);
    box-shadow: 0 2px 10px rgba(107, 90, 45, 0.5);
}

.product-badge.economy {
    background: linear-gradient(135deg, #2d6b4a 0%, #3d8b6b 100%);
    box-shadow: 0 2px 10px rgba(45, 107, 74, 0.5);
}

/* Product Info */
.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h6 {
    font-family: var(--font-title);
    font-size: 0.95rem;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.75rem;
    opacity: 0.7;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    flex-grow: 1;
}

.product-price {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffdad9;
    background: linear-gradient(135deg, #ffdad9, #ffb3b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.catalog-section .note {
    font-size: 0.85rem;
    opacity: 0.6;
    font-style: italic;
}

/* Extra small phones */
@media (max-width: 360px) {
    .hero {
        padding: 3.5rem 0.75rem 2rem;
    }
    
    .hero .display {
        font-size: 1.75rem;
    }
    
    .hero .headline {
        font-size: 0.85rem;
    }
    
    .hero .chip {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hero .button.large {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 0.75rem !important;
    }
    
    .service-card i {
        font-size: 1.5rem;
    }
    
    .service-card h5 {
        font-size: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.7rem;
    }
    
    .contact-card-primary,
    .contact-card-secondary {
        padding: 1rem;
    }
    
    .contact-row {
        padding: 0.4rem;
    }
    
    .contact-row h6 {
        font-size: 0.8rem;
    }
    
    .contact-row p {
        font-size: 0.75rem;
    }
}

/* Catalog Responsive */
@media (max-width: 992px) {
    .category-title {
        font-size: 1.3rem;
    }
    
    .product-info h6 {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .catalog-section {
        padding: 1.25rem 0.5rem;
    }
    
    .catalog-section h3 {
        font-size: 1.35rem;
        margin-bottom: 0.25rem;
    }
    
    .catalog-section .subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .category-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }
    
    /* Catalog Grid - 2 columns */
    .catalog-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem !important;
    }
    
    .catalog-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    .product-card {
        border-radius: 12px !important;
    }
    
    .product-image {
        aspect-ratio: 1/1;
    }
    
    .product-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
        top: 0.4rem;
        left: 0.4rem;
        border-radius: 10px;
    }
    
    .product-info {
        padding: 0.6rem;
    }
    
    .product-info h6 {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }
    
    .product-desc {
        font-size: 0.6rem;
        margin-bottom: 0.4rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.3;
    }
    
    .product-price {
        font-size: 0.8rem;
    }
    
    .catalog-section .note {
        font-size: 0.7rem;
        padding: 0 0.25rem;
        line-height: 1.4;
    }
    
    .catalog-section .space.large {
        height: 1rem !important;
    }
}

@media (max-width: 360px) {
    .category-title {
        font-size: 0.9rem;
    }
    
    .product-info {
        padding: 0.5rem;
    }
    
    .product-info h6 {
        font-size: 0.7rem;
    }
    
    .product-desc {
        font-size: 0.55rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
    
    .product-price {
        font-size: 0.7rem;
    }
    
    .product-badge {
        font-size: 0.5rem;
        padding: 0.15rem 0.3rem;
    }
}
