:root {
    /* Color Palette */
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-gray: #f4f4f4;
    --border-color: #cccccc;
    --text-muted: #666666;

    /* Typography */
    --font-heading: "Bebas Neue", "Impact", "Arial Black", sans-serif;
    --font-serif: "Playfair Display", "Georgia", serif;
    --font-body: "Inter", "Montserrat", "Helvetica", sans-serif;

    /* Spacing */
    --space-unit: 1rem;
    --section-padding: 120px;
    --container-width: 1440px;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition-slow);
}

img:hover {
    filter: grayscale(0%);
}

/* Typography Classes */
.heading-xl {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 12rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.heading-l {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    text-transform: none;
    font-weight: 400;
}

/* Layout Components */
.section {
    padding: var(--section-padding) 5%;
    position: relative;
}

.dark-section {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
    color: white;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.nav-link:hover {
    opacity: 0.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 0;
}

.btn-black {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-black:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-white {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-white:hover {
    background: transparent;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('hero-bg.jpg') center/cover no-repeat;
    color: var(--secondary-color);
}

.hero-content {
    z-index: 2;
}

/* Ticker Animation */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--primary-color);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 4rem;
    text-transform: uppercase;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Service List */
.price-list {
    margin-top: 4rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.price-item:hover {
    padding-left: 1rem;
}

.price-name {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.price-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 2rem;
}

/* Gallery - Masonry Style */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.gallery-item {
    grid-column: span 4;
    position: relative;
    overflow: hidden;
}

.gallery-item.wide { grid-column: span 8; }
.gallery-item.tall { grid-row: span 2; }

.gallery-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Footer */
.footer {
    padding: 100px 5% 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #333;
    padding-bottom: 80px;
    margin-bottom: 40px;
}

.footer-cta {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: left;
}

.info-col h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.info-col p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Utility Classes */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.text-center { text-align: center; }
.split-layout { display: flex; gap: 4rem; align-items: center; }

/* Responsive Media Queries */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-menu {
        display: none; /* In real app, replace with hamburger */
    }
    
    .split-layout {
        flex-direction: column;
    }
    
    .gallery-item, .gallery-item.wide {
        grid-column: span 6;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 5%;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-item, .gallery-item.wide {
        grid-column: span 12;
    }
    
    .price-title, .price-value {
        font-size: 1.5rem;
    }
    
    .ticker-item {
        font-size: 1rem;
        margin-right: 2rem;
    }
}

/* Hover Effects */
.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.img-zoom-container {
    overflow: hidden;
}

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