:root {
    --bg-color: #0a0a0a;
    --surface-color: #141414;
    --border-color: #333;
    --text-main: #f8fafc;
    --text-muted: #e0e0e0;
    --accent-magenta: #ff0055;
    --accent-magenta-hover: #e6004c;
    --accent-yellow: #facc15;
    --font-display: 'Anton', sans-serif;
    --font-body: 'Roboto Mono', monospace;
    --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --z-modal: 9999;
}

@font-face {
    font-family: 'Anton';
    src: url('/assets/fonts/Anton-Regular.woff2') format('woff2');
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Roboto Mono';
    src: url('/assets/fonts/RobotoMono-Regular.woff2') format('woff2');
    font-display: swap;
    font-weight: 400;
  }
  
  @font-face {
    font-family: 'Roboto Mono';
    src: url('/assets/fonts/RobotoMono-SemiBold.woff2') format('woff2');
    font-display: swap;
    font-weight: 600;
  }

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 5rem;
}

section[id],
div[id] {
    scroll-margin-top: 5rem;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.success-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.0625rem;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(0.75rem);
    -webkit-backdrop-filter: blur(0.75rem);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: auto;
}

.nav-hamburger span {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--text-main);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(0.4375rem) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-0.4375rem) rotate(-45deg); }

.wrapper-container {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    margin-bottom: 4rem;
    gap: 4rem;
}

.process-section,
.request-section,
.faq-section,
.hero-gallery {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.hero-content,
.process-content,
.form-section {
    flex: 1;
}

.thank-you-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    max-width: 50rem;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 2rem;
}

.process-container,
.request-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

footer {
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem;
    margin-top: 6rem;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.hero-title,
.section-title,
.title,
.modal-title,
.slide-title,
.info-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    color: var(--text-main);
}

.hero-subtitle,
.section-subtitle,
.form-subtitle,
.message,
.faq-content,
.terms-list li,
.modal-text,
.info-list,
.info-paragraphs {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.title-main {
    font-size: clamp(4.5rem, 14vw, 8.5rem); 
    line-height: 0.85;
    letter-spacing: -0.01em;
}

.title-sub {
    font-size: clamp(2.15rem, 6.6vw, 4rem); 
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 25rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    text-align: center;
    margin: 6rem 0 1rem;
}

.section-title.left-aligned {
    text-align: left;
    margin: 0 0 3rem 0;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 4rem;
}

.form-title {
    margin-top: 0;
    font-size: clamp(2.2rem, 5vw, 3rem);
    text-align: left;
}

.title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.125rem;
}

.top-banner {
    background: var(--bg-color);
    color: var(--accent-yellow);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 0.0625rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-right 20s linear infinite;
}

.top-banner:hover .marquee-content {
    animation-play-state: paused;
    cursor: default;
}

.marquee-item {
    padding: 0 2rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.5);
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    position: relative;
    cursor: zoom-in;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem 5rem;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide:hover .slide-overlay {
    opacity: 1;
}

.slide-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.125rem;
    margin: 0;
    text-shadow: 0.125rem 0.125rem 0.625rem rgba(0,0,0,0.8);
    line-height: 1.1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.125rem;
    height: 3.125rem;
    background-color: white;
    color: #0a0a0a;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    box-shadow: 0 0.25rem 0.9375rem rgba(0,0,0,0.5);
}

.carousel-btn:hover {
    background-color: var(--accent-magenta);
    color: white;
    transform: translateY(-50%) scale(1.1);
    cursor: pointer;
}

.prev-btn { left: 1rem; }
.next-btn { right: 1rem; }

nav a:hover {
    color: var(--accent-magenta);
    text-shadow: 0 0 0.5rem rgba(255, 0, 85, 0.4);
}

.hero-image {
    flex: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 2.5rem rgba(255, 0, 85, 0.2);
}

.process-image,
.request-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.process-image img,
.request-image img {
    object-fit: contain;
}

.request-image img {
    border-radius: 0.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent-magenta);
    color: white;
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
}

.btn:hover {
    background-color: var(--accent-magenta-hover);
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.25rem rgba(255, 0, 85, 0.35);
}

.btn-outline {
    background: transparent;
    border: 0.125rem solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    transition: var(--transition-base);
}

.btn-outline:hover {
    background-color: var(--accent-magenta-hover);
    color: white;
    border-color: var(--accent-magenta-hover);
    box-shadow: 0 0.5rem 1.25rem rgba(255, 0, 85, 0.35);
}

.btn-black-text {
    color: #000;
    font-weight: 800;
}

.price-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
}

.price-card:hover {
    border-color: var(--accent-magenta);
    box-shadow: 0 0.5rem 1.25rem rgba(255, 0, 85, 0.15);
    transform: scale(1.03) translateY(-0.3125rem);
}

.price-card img {
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.price-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.0625rem;
}

.price-tag {
    color: var(--accent-yellow);
    font-weight: bold;
    margin-bottom: 1rem;
}

.price-card p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    border-left: 0.125rem solid var(--border-color);
    padding-left: 1.5rem;
    position: relative;
    transition: var(--transition-base);
}

.step:hover {
    border-left-color: var(--accent-magenta);
    transform: translateX(0.25rem);
}

.step h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    color: var(--text-main);
}

.step-number {
    color: var(--accent-magenta);
}

.step p {
    font-size: 0.95rem;
}

.form-section {
    background: transparent;
    padding: 0;
    border: none;
    width: 100%;
}

.hidden-input {
    display: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: white;
    font-family: var(--font-body);
    border-radius: 0.25rem;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-magenta);
}

textarea {
    resize: vertical;
    min-height: 7.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label {
    margin: 0;
    font-weight: normal;
    line-height: 1.4;
    cursor: pointer;
}

.terms-link {
    color: var(--accent-yellow);
    text-decoration: underline;
    cursor: pointer;
    transition: var(--transition-base);
}

.terms-link:hover {
    color: var(--accent-magenta);
    text-shadow: 0 0 0.5rem rgba(255, 0, 85, 0.4);
}

.submit-btn {
    width: 100%;
    background-color: var(--surface-color);
    color: white;
    padding: 1.2rem;
    cursor: pointer;
    border: 1px solid var(--border-color);
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--font-body);
    border-radius: 0.25rem;
    transition: var(--transition-base);
}

.submit-btn:hover {
    background-color: var(--accent-magenta-hover);
    border-color: var(--accent-magenta-hover);
    box-shadow: 0 0.5rem 1.25rem rgba(255, 0, 85, 0.35);
}

#formStatus {
    display: none;
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
}

details {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
    border-radius: 0;
}

summary {
    padding: 1.5rem 0;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    transition: color 0.3s;
}

summary:hover {
    color: var(--accent-magenta);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "→";
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

details[open] summary::after {
    transform: rotate(90deg);
    color: var(--accent-magenta);
}

.faq-content {
    padding: 0 0 1.5rem 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: var(--z-modal);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(0.25rem);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--surface-color);
    margin: 5vh auto;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    width: 90%;
    max-width: 37.5rem;
    position: relative;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.modal-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.modal-subtitle {
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-transform: uppercase;
    margin: 2rem 0 1rem 0;
    letter-spacing: 0.0625rem;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.terms-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}

.terms-list li::before {
    content: "•";
    color: var(--accent-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.modal-text strong {
    color: var(--text-main);
}

.modal-text {
    font-size: 0.95rem;
}

.modal-text p {
    margin-bottom: 1rem;
}

.modal-text p:last-child {
    margin-bottom: 0;
}

.close-btn {
    color: var(--text-muted);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-base);
    z-index: 10;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--accent-magenta);
    text-shadow: 0 0 0.5rem rgba(255, 0, 85, 0.4);
}

.icon-success {
    font-size: 4rem;
    color: var(--accent-magenta);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 1.25rem rgba(255, 0, 85, 0.4);
}

.info-modal {
    padding: 0;
    max-width: 53.125rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.info-modal-layout {
    display: flex;
    flex-wrap: wrap;
    min-height: 31.25rem;
}

.info-modal-text {
    flex: 1.2;
    min-width: 18.75rem;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: 0.0625rem;
}

.info-price {
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.info-subtitle {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-list li {
    margin-bottom: 0.3rem;
}

.info-paragraphs {
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-paragraphs p {
    margin-bottom: 1rem;
}

.info-paragraphs p:last-child,
.info-footer-text {
    color: var(--accent-magenta);
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.info-modal-image {
    flex: 1;
    min-width: 15.625rem;
    background-color: #000;
}

.info-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-logo img {
    height: 2.8125rem;
    width: auto;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.footer-social a:hover {
    color: var(--accent-magenta);
    text-shadow: 0 0 0.5rem rgba(255, 0, 85, 0.4);
}

.footer-credits {
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 0.03125rem;
}

/* ── Lightbox ─────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    align-items: center;
    justify-content: center;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.25rem;
    display: block;
}

.lightbox-caption {
    position: absolute;
    bottom: -2.25rem;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.125rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    color: var(--text-muted);
    font-size: 2.2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-base);
    z-index: 10001;
    background: none;
    border: none;
}

.lightbox-close:hover {
    color: var(--accent-magenta);
    text-shadow: 0 0 0.5rem rgba(255, 0, 85, 0.4);
}

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

@media (max-width: 48rem) {
    html {
        scroll-padding-top: 4rem;
    }

    section[id],
    div[id] {
        scroll-margin-top: 4rem;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .process-container {
        flex-direction: column;
        text-align: left;
    }

    .process-content .section-title.left-aligned {
        text-align: center;
    }

    .request-container {
        flex-direction: column-reverse;
    }

    .form-section {
        padding: 0;
    }

    .form-title,
    .form-subtitle {
        text-align: center;
    }

    .message {
        font-size: 1.1rem;
        max-width: 37.5rem;
    }

    .footer-social {
        gap: 1.5rem;
    }

    .slide-overlay {
        padding: 1.5rem;
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 60%);
    }

    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }

    .info-modal-layout {
        flex-direction: column-reverse;
        flex-wrap: nowrap;
        height: 85vh;
        min-height: auto;
    }
    
    .info-modal-image {
        display: none;
    }
    
    .info-modal-text {
        flex: 1 1 auto;
        width: 100%;
        padding: 2rem 1.5rem;
        overflow-y: auto;
    }

    .close-btn.info-close {
        background-color: rgba(20, 20, 20, 0.8);
        border: 1px solid var(--border-color);
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        top: 1rem;
        right: 1rem;
        z-index: 20;
    }

    nav {
        justify-content: flex-end;
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0;
        background-color: rgba(10, 10, 10, 0.97);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 0;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 0.9rem 2rem;
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .nav-hamburger {
        display: flex;
    }
}