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

:root {
    --black: #1a1a1a;
    --white: #fafafa;
    --gray: #888888;
    --light-gray: #555555;
    --accent: #f0f0f0;
    --orange: #e8600a;
    --orange-hover: #d15509;
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --border: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 3px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.nav-logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: var(--orange);
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--orange);
}

.nav-contact {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/interior-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(0.8) saturate(0.3);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.55));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 15vw, 200px);
    line-height: 0.9;
    letter-spacing: 8px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    color: var(--black);
}

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

.hero-title-line:first-child {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 500;
    opacity: 0.9;
    color: var(--orange);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.6;
    color: var(--black);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: var(--orange);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(20px); }
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* About Section */
.about {
    padding: 150px 0;
    background: var(--bg);
}

.about::before {
    display: none;
}

/* Shared background image for sections with interior visible */
.section-with-bg {
    position: relative;
    overflow: hidden;
}

.section-with-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/interior-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(0.8) saturate(0.3);
    z-index: 0;
}

.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
}

.section-with-bg .container {
    position: relative;
    z-index: 2;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: 4px;
    margin-bottom: 50px;
    font-weight: 400;
}

.about-intro {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 500;
}

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

.about-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info-block h3 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--orange);
}

.info-block p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
}

/* Services Section */
.services {
    padding: 150px 0;
}

.services::before {
    background: rgba(245, 245, 245, 0.9);
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-title {
    text-align: center;
    margin-bottom: 20px;
}

.services-instruction {
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 60px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 25px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-strip:hover {
    background: var(--bg-alt);
    border-color: rgba(0, 0, 0, 0.15);
}

.service-strip.selected {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.service-strip.selected .service-number {
    color: var(--white);
    opacity: 0.5;
}

.service-strip-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    line-height: 1;
    color: var(--orange);
    opacity: 0.6;
    min-width: 40px;
}

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 400;
    min-width: 200px;
}

.service-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray);
    flex: 1;
}

.service-strip.selected .service-description {
    color: rgba(255, 255, 255, 0.7);
}

.service-strip-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    min-width: 60px;
    text-align: right;
}

.service-selector {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.service-strip:hover .service-selector {
    border-color: rgba(0, 0, 0, 0.4);
}

.service-strip.selected .service-selector {
    border-color: var(--white);
    background: var(--white);
}

.service-strip.selected .service-selector::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
}

/* Portfolio Section */
.portfolio {
    padding: 150px 0;
    background-color: var(--bg);
}

.portfolio-title {
    margin-bottom: 80px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 6px;
    background: var(--bg);
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.97) saturate(0.95);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover img {
    filter: brightness(1.05) saturate(1.1);
    transform: scale(1.03);
}

.portfolio-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    background: var(--orange);
    color: var(--white);
    padding: 8px 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.portfolio-item:hover .portfolio-label {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 150px 0;
}

.contact::before {
    background: rgba(245, 245, 245, 0.9);
}

.contact .container {
    position: relative;
    z-index: 2;
}

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

.contact-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
    color: var(--gray);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-detail h3 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--orange);
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--black);
    padding: 18px 20px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
    background: var(--bg);
}

.form-group input[readonly] {
    cursor: default;
    background: var(--bg-alt);
    border-color: var(--border);
}

.form-group input[readonly]:focus {
    border-color: rgba(0, 0, 0, 0.15);
    background: var(--bg-alt);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
    letter-spacing: 1px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231a1a1a' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group select option {
    background: var(--bg);
    color: var(--black);
}

.btn-submit {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

.form-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 2000;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.form-success-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 40px 50px;
    max-width: 480px;
    width: 90%;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    color: var(--black);
}

.form-success-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 12px;
}

.form-success-close {
    background: transparent;
    color: var(--black);
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.form-success-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    margin-bottom: 10px;
}

.form-success-message {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
}

.form-success-details p {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding: 12px 0;
    font-size: 14px;
}

.form-success-details span {
    color: var(--gray);
    letter-spacing: 1px;
}

.form-success-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-brand p,
.footer-contact p,
.footer-address p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-socials a:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4,
.footer-address h4 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-strip {
        padding: 20px 30px;
    }
    
    .service-strip-left {
        gap: 20px;
    }
    
    .service-title {
        min-width: 150px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 11px;
    }

    .nav-contact {
        display: none;
    }

    .hero-title {
        font-size: clamp(60px, 12vw, 120px);
    }

    .section-title {
        font-size: clamp(40px, 10vw, 80px);
    }

    .about,
    .services,
    .portfolio,
    .contact {
        padding: 100px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

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

    .service-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }
    
    .service-strip-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    
    .service-title {
        min-width: auto;
        font-size: 18px;
    }
    
    .service-description {
        font-size: 12px;
    }
    
    .service-strip-right {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 320px;
    background: var(--black);
    color: var(--white);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 3000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.hidden {
    opacity: 0;
    transform: translateX(-120%);
    pointer-events: none;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: var(--orange);
    text-decoration: underline;
}

.cookie-banner-btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease;
}

.cookie-banner-btn:hover {
    background: var(--orange-hover);
}

/* Legal Pages Links */
.footer-legal {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 1px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 12px;
}

.footer-legal a:hover {
    color: var(--orange);
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 50px;
        letter-spacing: 4px;
    }
    
    .service-number {
        font-size: 24px;
    }
    
    .service-price {
        font-size: 28px;
    }
}
