/* 
    Rakib Tailor - Luxury Stylesheet (Mohair Theme Inspired)
    Theme: Minimalist High-Contrast Black & White
*/

:root {
    /* Colors */
    --clr-black: #000000;
    --clr-white: #ffffff;
    --clr-off-white: #f9f8f6;
    --clr-dark-gray: #1a1a1a;
    --clr-gray: #757575;
    --clr-border: #e0e0e0;
    --clr-accent: #b89e6c;
    /* Luxury Gold */

    /* Typography */
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Ibarra Real Nova', serif;

    /* Layout */
    --transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.3s ease;
}

/* Base Reset */
* {
    margin: 0;
    box-sizing: border-box;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--clr-off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-gray);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--clr-black);
}



html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-dark-gray);
    background-color: var(--clr-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Cinematic Film Grain Overlay */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    /* Just below cursor */
    opacity: 0.04;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
}

.favicon{
    border-radius: 30px;
}

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

ul {
    list-style: none;
}

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

/* Typography Classes */
h1,
h2,
h3,
h4,
h5,
h6,
.nav-links a,
.logo,
.btn {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--clr-black);
    letter-spacing: 0.05em;
}

.accent-italic {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

/* Layout Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section {
    padding: 120px 0;
}

.section-divider {
    width: 1px;
    height: 80px;
    background-color: var(--clr-black);
    margin: 0 auto;
    opacity: 0.2;
}

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

.bg-soft {
    background-color: var(--clr-off-white);
}

.bg-dark {
    background-color: var(--clr-black);
    color: var(--clr-white);
}

.text-light {
    color: var(--clr-white) !important;
}

/* Section Titles */
.section-top-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clr-gray);
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.section-top-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -40px;
    width: 30px;
    height: 1px;
    background-color: var(--clr-gray);
}

.section-top-label::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px;
    width: 30px;
    height: 1px;
    background-color: var(--clr-gray);
}

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

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    background: transparent;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-outline {
    color: var(--clr-black);
    background-color: transparent;
    border: none;
    box-shadow: inset 0 0 0 1px var(--clr-black);
    transition: all var(--transition-fast);
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, var(--clr-black) 50%, transparent 50%),
        linear-gradient(90deg, var(--clr-black) 50%, transparent 50%),
        linear-gradient(0deg, var(--clr-black) 50%, transparent 50%),
        linear-gradient(0deg, var(--clr-black) 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 14px 1px, 14px 1px, 1px 14px, 1px 14px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    opacity: 0;
    pointer-events: none;
}

.btn-outline:hover {
    box-shadow: inset 0 0 0 0 transparent;
}

.btn-outline:hover::after {
    opacity: 1;
    animation: stitchLine 0.6s linear infinite;
}

/* Dark version of outline button for dark backgrounds */
.btn-outline.dark {
    color: var(--clr-white);
    background-color: var(--clr-black);
    box-shadow: inset 0 0 0 1px var(--clr-white);
}

.btn-outline.dark::after {
    background:
        linear-gradient(90deg, var(--clr-white) 50%, transparent 50%),
        linear-gradient(90deg, var(--clr-white) 50%, transparent 50%),
        linear-gradient(0deg, var(--clr-white) 50%, transparent 50%),
        linear-gradient(0deg, var(--clr-white) 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 14px 1px, 14px 1px, 1px 14px, 1px 14px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
}

.btn-outline.dark:hover {
    color: var(--clr-white);
    box-shadow: inset 0 0 0 0 transparent;
}

@keyframes stitchLine {
    100% {
        background-position: 14px 0, -14px 100%, 0 -14px, 100% 14px;
    }
}

.btn-link {
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-black);
    position: relative;
    transition: border-color var(--transition-fast);
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--clr-black) 50%, transparent 50%);
    background-repeat: repeat-x;
    background-size: 8px 1px;
    background-position: 0 0;
    opacity: 0;
}

.btn-link:hover {
    border-bottom-color: transparent;
}

.btn-link:hover::after {
    opacity: 1;
    animation: stitchLineHorizontal 0.4s linear infinite;
}

@keyframes stitchLineHorizontal {
    100% {
        background-position: 8px 0;
    }
}

/* -----------------------------------
   Minimalist HUD Navigation
-------------------------------------- */
.minimal-hud {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1500;
    mix-blend-mode: difference;
}

.hud-logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--clr-white);
}

.menu-toggle {
    font-family: var(--font-heading);
    background: none;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    position: relative;
    padding: 5px 0;
    color: var(--clr-white);
}

.menu-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-toggle:hover::after {
    transform: scaleX(0.4);
}

/* Artistic Full-Screen Menu */
.art-nav {
    position: relative;
    text-align: left;
    width: 100%;
    padding-left: 10%;
}

.nav-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: -1;
}

.art-links {
    list-style: none;
}

.art-links li {
    margin-bottom: 20px;
}

.art-links a {
    font-size: 5.5rem;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--clr-white);
    display: block;
    position: relative;
    overflow: hidden;
    line-height: 1;
    transition: all 0.5s ease;
}

.art-links a:hover {
    padding-left: 40px;
    color: var(--clr-accent);
}

/* Asymmetrical Art Hero */
.art-hero {
    height: 110vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: var(--clr-off-white);
    position: relative;
    overflow: hidden;
}

.hero-layer-text {
    z-index: 2;
    flex: 1;
}

.hero-layer-text h1 {
    font-size: 8rem;
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--clr-black);
}

.hero-layer-img {
    flex: 1;
    height: 80vh;
    position: relative;
    z-index: 1;
}

.hero-layer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 60px 60px 0 var(--clr-white);
}

.hero-layer-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--clr-black);
}

.scroll-line {
    width: 1px;
    height: 100px;
    background: var(--clr-black);
    transform-origin: top;
    animation: scrollLine 2s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
    }

    50% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    font-weight: 500;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-white);
    z-index: 1001;
}

@media (max-width: 1100px) {

    .header-nav-left,
    .header-nav-right .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .main-logo-centered {
        left: 40px;
        transform: none;
    }
}

@media (max-width: 991px) {
    .nav-links.mobile-only {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--clr-white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1000;
        list-style: none;
    }

    .nav-links.mobile-only.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links.mobile-only a {
        color: var(--clr-black);
        font-family: var(--font-heading);
        font-size: 1.8rem;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
}


/* -----------------------------------
   Hero Slider
-------------------------------------- */
.main-slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-content {
    max-width: 1000px;
    z-index: 2;
    text-align: center;
    color: var(--clr-white);
}

/* Cinematic Reveals */
.reveal-text {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.2s ease;
}

.reveal-text.revealed .reveal-word {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-fade.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-top-label {
    opacity: 0;
    letter-spacing: 0.4em;
    transform: translateY(10px);
    transition: all 1s ease;
}

.section-top-label.revealed {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 6.5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

/* Editorial Spacing */
h2 {
    line-height: 1.15;
    letter-spacing: -0.01em;
}

p {
    line-height: 1.8;
    letter-spacing: 0.02em;
}

/* Scrolling Marquee */
.marquee-section {
    padding: 30px 0;
    background-color: var(--clr-off-white);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 10px;
}

.marquee-content .bullet {
    color: var(--clr-gray);
    font-size: 0.8rem;
    vertical-align: middle;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.1;
}

.about-text h2 .accent-italic {
    font-size: 3.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--clr-gray);
    margin-bottom: 25px;
}

.about-text .btn-link {
    margin-top: 20px;
}

/* Image aspect ratio control */
.about-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section (Dotted List Style) */
.services-list-container {
    max-width: 900px;
    margin: 0 auto;
}

.service-list-item {
    margin-bottom: 60px;
}

.service-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 400;
    white-space: nowrap;
}

.service-dots {
    flex-grow: 1;
    border-bottom: 1px dotted var(--clr-black);
    margin: 0 20px;
    opacity: 0.3;
    position: relative;
    top: -8px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    white-space: nowrap;
}

.service-desc {
    color: var(--clr-gray);
    max-width: 80%;
    font-weight: 300;
}

/* -----------------------------------
   Promo Grid Section
-------------------------------------- */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promo-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.promo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.promo-item:hover img {
    transform: scale(1.05);
}

.promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--clr-white);
}

.promo-content h3 {
    font-size: 1.5rem;
    color: var(--clr-white);
    margin-bottom: 15px;
}

/* -----------------------------------
   Split Story Section & Check List
-------------------------------------- */
.check-list {
    margin-top: 30px;
}

.check-list li {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list li i {
    font-size: 0.7rem;
    color: var(--clr-black);
}

/* -----------------------------------
   FAQ Section
-------------------------------------- */
.faq-list {
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 10px;
}

.faq-question {
    padding: 25px 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-question i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--clr-gray);
    font-size: 0.95rem;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

/* -----------------------------------
   Testimonials Section
-------------------------------------- */
.bg-dark {
    background-color: var(--clr-dark-gray);
}

.text-light h2,
.text-light h3,
.text-light p,
.text-light .section-top-label {
    color: var(--clr-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-size: 2rem;
    color: var(--clr-gray);
    margin-bottom: 30px;
    opacity: 0.5;
}

.quote-text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 40px;
    color: var(--clr-white);
}

.client-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--clr-gray);
    text-transform: uppercase;
}

/* Gallery Section (Masonry) */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    background-color: var(--clr-off-white);
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.overlay-text {
    color: var(--clr-white);
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform var(--transition);
}

.masonry-item:hover .overlay-text {
    transform: translateY(0);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Create staggered look */
.masonry-item:nth-child(even) {
    margin-top: 80px;
    margin-bottom: -80px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 60px;
}

.contact-info h2 .accent-italic {
    font-size: 4rem;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h4 {
    font-size: 1rem;
    color: var(--clr-black);
    margin-bottom: 15px;
    font-weight: 500;
}

.info-block p {
    color: var(--clr-gray);
}

/* Minimal Form */
.minimal-form .form-group {
    margin-bottom: 30px;
}

.minimal-form input,
.minimal-form select,
.minimal-form textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--clr-border);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-black);
    outline: none;
    transition: border-color var(--transition-fast);
}

/* Remove default select styling */
.minimal-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.minimal-form input:focus,
.minimal-form select:focus,
.minimal-form textarea:focus {
    border-bottom-color: var(--clr-black);
}

.minimal-form input::placeholder,
.minimal-form textarea::placeholder {
    color: #999;
    font-style: italic;
    opacity: 0.7;
}

.mohair-form input,
.mohair-form textarea {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    padding: 20px 0;
}

.btn-solid-dark {
    background-color: var(--clr-black);
    color: var(--clr-white);
    border: none;
    padding: 15px 40px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-solid-dark:hover {
    background-color: var(--clr-gray);
    letter-spacing: 0.25em;
}

/* -----------------------------------
   Intro 4-Grid Section
-------------------------------------- */
.intro-grid-section .about-grid {
    align-items: center;
}

.intro-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.intro-img-item {
    overflow: hidden;
    height: 300px;
}

.intro-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.intro-img-item:hover img {
    transform: scale(1.05);
}

/* -----------------------------------
   Couture Stats Section
-------------------------------------- */
.stats-section {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.stat-item {
    width: 100%;
}

.stat-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stat-label {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
}

.stat-percent {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--clr-accent);
}

.stat-bar-wrapper {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.stat-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--clr-accent) 50%, transparent 50%);
    background-repeat: repeat-x;
    background-size: 10px 1px;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* -----------------------------------
   Couture Team Section
-------------------------------------- */
.team-section {
    padding: 120px 0;
    background-color: var(--clr-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-item {
    text-align: center;
}

.team-img {
    overflow: hidden;
    margin-bottom: 30px;
    height: 450px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-item:hover .team-img img {
    transform: scale(1.08);
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team-role {
    font-size: 0.95rem;
    color: var(--clr-gray);
}

/* -----------------------------------
   Map Section
-------------------------------------- */
.map-section {
    width: 100%;
    height: 500px;
    /* Increased height */
    position: relative;
    z-index: 5;
    background-color: #f7f7f7;
    margin-top: 50px;
    display: block !important;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(1) contrast(1.1) brightness(0.9);
    pointer-events: auto;
}

/* -----------------------------------
   Luxury Footer (4-Column)
-------------------------------------- */
.luxury-footer {
    background-color: #151a15;
    /* Mohair Signature Deep Green-Black */
    color: var(--clr-white);
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col .logo {
    color: var(--clr-white);
    text-align: left;
    margin-bottom: 30px;
    font-size: 2rem;
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    margin-bottom: 40px;
    color: var(--clr-white);
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

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

.footer-links-list a,
.footer-links-list p {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--clr-white);
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--clr-white);
    padding: 15px 0;
    flex: 1;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--clr-white);
    cursor: pointer;
    padding-left: 15px;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.luxury-footer .social-icons {
    display: flex;
    gap: 20px;
}

.luxury-footer .social-icons a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.luxury-footer .social-icons a:hover {
    color: var(--clr-white);
}

/* Animations */
.reveal {
    opacity: 0;
}

.fade-up {
    transform: translateY(40px);
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback for visibility - ensures content shows even if JS fails */
.fade-up,
.reveal-fade,
.reveal-text {
    animation: revealFallback 0s 2s forwards;
}

@keyframes revealFallback {
    to {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border);
    box-shadow: 0 0 0 4px transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

.back-to-top.visible:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 6px var(--clr-white), 0 0 0 7px rgba(184, 158, 108, 0.4);
    /* Subtle goldish border indicator */
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top::after {
    border-radius: 50%;
    /* Make sewing border match pill shape */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content h1 .accent-italic {
        font-size: 4.5rem;
    }

    .section-title h2 {
        font-size: 3rem;
    }

    .about-grid,
    .contact-grid {
        gap: 60px;
    }
}

@media (max-width: 991px) {
    .promo-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 850px) {
    .header-top {
        display: none;
    }

    .header-bottom {
        background-color: var(--clr-white);
        padding: 15px 0;
    }

    .main-logo {
        color: var(--clr-black);
        font-size: 1.5rem;
    }

    .nav-links-centered {
        display: none;
    }

    .mobile-only {
        display: flex;
    }

    .hamburger {
        display: block;
        color: var(--clr-black);
    }

    .nav-links.mobile-only {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--clr-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
        z-index: 2000;
        list-style: none;
        display: flex;
    }

    .nav-links.mobile-only.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links.mobile-only a {
        color: var(--clr-black);
        font-size: 1.8rem;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .intro-image-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-img {
        height: 400px;
    }

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

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

    .promo-item {
        height: 400px;
    }

    .fullscreen-hero h1 {
        font-size: 2.8rem;
    }

    .fullscreen-hero h1 .accent-italic {
        font-size: 3.5rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text,
    .contact-info {
        order: 2;
    }

    .about-image,
    .contact-form-wrapper {
        order: 1;
    }
}

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

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h1 .accent-italic {
        font-size: 3.5rem;
    }

    .services-list-container {
        padding: 0 10px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .service-dots {
        display: none;
    }

    .service-price {
        font-weight: 500;
        font-family: var(--font-heading);
    }

    .section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}

/* Intro 4-Grid Layout */
.intro-grid-section .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.intro-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    position: relative;
}

.intro-img-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.intro-img-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-black);
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
}

.intro-img-item.revealed::after {
    transform: scaleY(0);
}

.intro-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1.1);
}

.intro-img-item.revealed img {
    transform: scale(1);
}

.intro-img-item:hover img {
    transform: scale(1.05);
}

/* Couture Stats Refined */
.stats-section {
    padding: 120px 0;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    width: 100%;
}

/* -----------------------------------
   Artisanal Intro Feature
-------------------------------------- */
.intro-feature-section {
    padding: 150px 0;
    overflow: visible;
}

.intro-layered-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    position: relative;
}

.intro-bg-text {
    position: absolute;
    top: -100px;
    right: 0;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    z-index: -1;
    line-height: 1;
}

.intro-main-visual {
    grid-column: 1 / 8;
    position: relative;
    z-index: 1;
}

.intro-main-visual img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.intro-floating-label {
    position: absolute;
    top: 50px;
    left: -40px;
    background: var(--clr-black);
    color: var(--clr-white);
    padding: 20px 40px;
    font-size: 1.2rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.intro-content-overlap {
    grid-column: 7 / 13;
    background: var(--clr-white);
    padding: 80px;
    margin-left: -50px;
    z-index: 2;
    box-shadow: 40px 40px 100px rgba(0, 0, 0, 0.05);
}

.intro-content-overlap h2 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.intro-content-overlap p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.7;
}

.intro-sub-visual {
    width: 60%;
    margin-top: 40px;
}

.intro-sub-visual img {
    width: 100%;
}

/* Vertical Data Pillars */
.stats-pillar-section {
    padding: 100px 0;
}

.stats-pillar-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 400px;
}

.pillar-item {
    text-align: center;
    width: 100px;
}

.pillar-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.6;
}

.pillar-bar-outer {
    height: 300px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 20px;
    position: relative;
}

.pillar-bar-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    background: var(--clr-accent);
    transition: height 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.pillar-num {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-accent);
}

.pillar-desc {
    font-size: 0.7rem;
    font-style: italic;
    opacity: 0.4;
}

@media (max-width: 1024px) {
    .intro-layered-grid {
        display: block;
    }

    .intro-main-visual {
        margin-bottom: 50px;
    }

    .intro-content-overlap {
        margin-left: 0;
        padding: 40px;
    }

    .stats-pillar-grid {
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    .pillar-item {
        margin-bottom: 50px;
    }

    .pillar-bar-outer {
        height: 150px;
    }
}

/* Full-Screen Overlays (Search & Info) */
.overlay-full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-black);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.overlay-full.active {
    opacity: 1;
    visibility: visible;
}

.overlay-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2rem;
    color: var(--clr-white);
    cursor: pointer;
    transition: transform 0.4s ease;
}

.overlay-close:hover {
    transform: rotate(90deg);
}

.search-input-wrapper {
    width: 60%;
    max-width: 800px;
}

.search-input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--clr-white);
    padding: 20px 0;
    color: var(--clr-white);
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 0.05em;
    outline: none;
}

.info-overlay-content {
    color: var(--clr-white);
    text-align: center;
    padding: 20px;
}

.info-overlay-content h2 {
    font-size: 4rem;
    margin-bottom: 30px;
}

.info-overlay-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

/* -----------------------------------
   Artisanal Mosaic Grid
-------------------------------------- */
.mosaic-section {
    padding: 150px 0;
    overflow: visible;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
    align-items: center;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.item-large {
    grid-column: 1 / 9;
    aspect-ratio: 16/10;
}

.item-tall {
    grid-column: 9 / 13;
    aspect-ratio: 3/5;
    margin-top: 100px;
}

.item-small {
    grid-column: 4 / 9;
    aspect-ratio: 4/3;
    margin-top: -200px;
    z-index: 2;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.mosaic-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--clr-white);
    z-index: 3;
}

.mosaic-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 15px;
    opacity: 0.8;
}

.mosaic-item h3 {
    font-size: 3rem;
    font-weight: 300;
}

/* Horizontal Scroll Section */
.horizontal-scroll-section {
    position: relative;
    height: 400vh;
}

.horizontal-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.horizontal-wrapper {
    display: flex;
    height: 100%;
    width: 400%;
    will-change: transform;
}

.horizontal-item {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15%;
}

.h-content {
    max-width: 900px;
    position: relative;
}

.h-index {
    position: absolute;
    top: -80px;
    left: -120px;
    font-size: 18rem;
    font-weight: 900;
    opacity: 0.03;
    line-height: 1;
    color: var(--clr-black);
}

.bg-dark .h-index {
    color: var(--clr-white);
}

.h-content h2 {
    font-size: 6rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.h-content p {
    margin-bottom: 10px;
}

.card-left {
    grid-column: 1 / 5;
}

.card-right {
    grid-column: 8 / 12;
    margin-top: 150px;
}

.card-center {
    grid-column: 4 / 9;
    margin-top: -100px;
    z-index: 3;
}

/* Testimonial Split */
.testimonial-split {
    padding: 150px 0;
}

.t-split-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: center;
}

/* -----------------------------------
   Layered Heritage
-------------------------------------- */
.heritage-layered-section {
    padding: 150px 0;
    overflow: visible;
}

.h-layered-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
}

.h-text-offset {
    grid-column: 1 / 6;
    background: var(--clr-off-white);
    padding: 80px;
    margin-right: -100px;
    z-index: 2;
}

.h-text-offset h2 {
    font-size: 5rem;
    margin-bottom: 30px;
}

.check-list-artisanal {
    list-style: none;
    margin-top: 40px;
    padding: 0;
}

.check-list-artisanal li {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.check-list-artisanal li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 1px;
    background: var(--clr-accent);
}

.h-visual-offset {
    grid-column: 6 / 13;
    position: relative;
}

.v-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    z-index: 1;
    pointer-events: none;
}

.h-visual-offset img {
    width: 100%;
}

/* Editorial Pricing */
.editorial-pricing-section {
    padding: 150px 0;
}

.pricing-spread {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-item {
    margin-bottom: 60px;
}

.p-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px;
}

.p-header h3 {
    font-size: 2.5rem;
    font-weight: 300;
    white-space: nowrap;
}

.p-line {
    flex-grow: 1;
    height: 1px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

.p-price {
    font-size: 1.5rem;
    color: var(--clr-accent);
    white-space: nowrap;
}

.p-meta {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .h-layered-grid {
        display: block;
    }

    .h-text-offset {
        margin-right: 0;
        padding: 40px;
        margin-bottom: 50px;
    }

    .p-header {
        flex-direction: column;
        gap: 5px;
    }

    .p-line {
        display: none;
    }
}

/* -----------------------------------
   Artisanal Lookbook Mosaic
-------------------------------------- */
.lookbook-mosaic-section {
    padding: 150px 0;
}

.lookbook-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 40px;
    align-items: center;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.lookbook-item:hover img {
    transform: scale(1.1);
}

.item-v {
    grid-column: 1 / 6;
    aspect-ratio: 3/4;
}

.item-h {
    grid-column: 7 / 13;
    aspect-ratio: 16/9;
    margin-top: -100px;
}

.item-s {
    grid-column: 2 / 7;
    aspect-ratio: 1/1;
    margin-top: -150px;
    z-index: 2;
}

.item-v2 {
    grid-column: 8 / 12;
    aspect-ratio: 3/4;
    margin-top: 50px;
}

.lookbook-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--clr-white);
    z-index: 3;
}

.l-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 10px;
    opacity: 0.7;
}

.lookbook-info h3 {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Atelier Contact */
.atelier-contact-section {
    padding: 150px 0;
    background: var(--clr-off-white);
}

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

.atelier-visual {
    position: relative;
}

.atelier-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -40px 40px 0 var(--clr-white);
}

.v-bg-text {
    position: absolute;
    top: -40px;
    left: -40px;
    font-size: 10rem;
    font-weight: 900;
    color: var(--clr-white);
    line-height: 1;
    z-index: -1;
}

.visual-label {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--clr-black);
    color: var(--clr-white);
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Art Form */
.art-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.art-form input,
.art-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.4s ease;
}

.art-form input:focus,
.art-form textarea:focus {
    border-bottom-color: var(--clr-accent);
}

.contact-details-row {
    display: flex;
    gap: 60px;
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px dotted rgba(0, 0, 0, 0.1);
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

.c-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--clr-accent);
    display: block;
    margin-bottom: 15px;
}

/* -----------------------------------
   Responsive & Utilities
-------------------------------------- */
@media (max-width: 1024px) {
    .team-mosaic {
        display: block;
    }

    .team-card {
        margin-bottom: 100px !important;
    }

    .t-split-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .t-text-side h2 {
        font-size: 3rem;
    }

    .t-quote-item p {
        font-size: 1.5rem;
    }

    .lookbook-mosaic {
        display: block;
    }

    .lookbook-item {
        margin-bottom: 40px !important;
    }

    .atelier-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .v-bg-text {
        font-size: 6rem;
        left: 0;
    }

    .art-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Social Icons Fine Polish */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--clr-white);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-icons a:hover {
    background: var(--clr-white);
    color: var(--clr-black);
    border-color: var(--clr-white);
}

/* -----------------------------------
   Editorial FAQ
-------------------------------------- */
.artisanal-faq-section {
    padding: 150px 0;
    background: var(--clr-off-white);
}

.faq-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: start;
}

.faq-e-header h2 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
}

.faq-e-list {
    padding-top: 40px;
}

.faq-e-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 30px 0;
}

.faq-e-question {
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
}

.faq-e-question span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--clr-accent);
    min-width: 25px;
}

.faq-e-question h3 {
    font-size: 1.3rem;
    font-weight: 400;
    flex-grow: 1;
}

.faq-icon {
    font-size: 0.9rem;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.5;
}

.faq-e-item.active .faq-icon {
    transform: rotate(45deg);
    opacity: 1;
    color: var(--clr-accent);
}

.faq-e-answer {
    max-height: 0;
    overflow: hidden;
    padding-left: 50px;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease, padding 0.4s ease;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.6);
}

.faq-e-item.active .faq-e-answer {
    max-height: 200px;
    opacity: 1;
    padding-top: 20px;
}

@media (max-width: 1024px) {
    .faq-editorial-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-e-header h2 {
        font-size: 3rem;
    }
}

/* -----------------------------------
   Bespoke Signature Footer
-------------------------------------- */
.signature-footer {
    background: var(--clr-black);
    color: var(--clr-white);
}

.sig-footer-top {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Animated film-grain noise overlay */
.sig-footer-top::before {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    animation: grainShift 0.8s steps(2) infinite;
}

@keyframes grainShift {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-3%, -5%);
    }

    50% {
        transform: translate(5%, 3%);
    }

    75% {
        transform: translate(-5%, 5%);
    }

    100% {
        transform: translate(3%, -3%);
    }
}

.sig-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 28vw;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
    white-space: nowrap;
    z-index: 1;
    color: rgba(255, 255, 255, 0.06);
}

.sig-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr auto 1fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.sig-brand .logo {
    font-size: 2rem;
    display: block;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    background: transparent;
    border: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    position: relative;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    color: var(--clr-accent);
    box-shadow: inset 0 0 0 0 transparent;
}

.social-icons a::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 04px;
    right: 04px;
    bottom: 04px;
    background:
        linear-gradient(90deg, var(--clr-accent) 50%, transparent 50%),
        linear-gradient(90deg, var(--clr-accent) 50%, transparent 50%),
        linear-gradient(0deg, var(--clr-accent) 50%, transparent 50%),
        linear-gradient(0deg, var(--clr-accent) 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 14px 1px, 14px 1px, 1px 14px, 1px 14px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    opacity: 0;
    pointer-events: none;
    border-radius: 10px;
}

.social-icons a:hover::after {
    opacity: 1;
    animation: stitchLine 0.6s linear infinite;
}

.sig-brand p {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-bottom: 30px;
    font-style: italic;
}

.sig-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
}

.sig-links h4,
.sig-newsletter h4 {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 30px;
}

.sig-links ul {
    list-style: none;
    padding: 0;
}

.sig-links ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.sig-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sig-links ul li a:hover {
    color: var(--clr-accent);
}

.sig-newsletter p {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-bottom: 25px;
}

.sig-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 25px 0;
}

.sig-footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sig-footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.4;
    letter-spacing: 0.1em;
}

.sig-footer-tagline {
    font-style: italic;
}

@media (max-width: 1024px) {
    .sig-footer-grid {
        grid-template-columns: 1fr;
    }

    .sig-divider {
        display: none;
    }

    .sig-bg-text {
        font-size: 50vw;
    }

    .sig-footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* -----------------------------------
   Editorial Team Section
-------------------------------------- */
.editorial-team-section {
    padding: 150px 0;
}

.et-header {
    margin-bottom: 80px;
}

.et-header h2 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
}

.et-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: end;
}

.et-card {
    position: relative;
}

/* The raised middle card creates the asymmetrical stagger */
.et-card--raised {
    margin-top: -80px;
}

.et-index {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
    margin-bottom: -20px;
    user-select: none;
}

.et-portrait {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.et-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.et-card:hover .et-portrait img {
    transform: scale(1.08);
}

.et-hover-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--clr-black);
    color: var(--clr-white);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: 12px 20px;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.5s ease;
}

.et-card:hover .et-hover-tag {
    transform: translateY(0);
    opacity: 1;
}

.et-info {
    padding-top: 25px;
}

.et-role {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--clr-accent);
    display: block;
    margin-bottom: 12px;
}

.et-name {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
}

.et-line {
    width: 40px;
    height: 1px;
    background: var(--clr-black);
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.et-card:hover .et-line {
    width: 100%;
}

@media (max-width: 1024px) {
    .et-grid {
        grid-template-columns: 1fr;
    }

    .et-card--raised {
        margin-top: 0;
    }

    .et-header h2 {
        font-size: 3.5rem;
    }

    .et-index {
        font-size: 5rem;
    }
}

/* -----------------------------------
   Client Voice Section
-------------------------------------- */
.client-voice-section {
    padding: 150px 0;
    background: var(--clr-black);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.cv-bg-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.cv-bg-word {
    font-size: 40vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.025);
    line-height: 1;
    user-select: none;
    white-space: nowrap;
}

.cv-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.cv-header h2 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.05;
}

.cv-quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* Stagger the middle card down */
.cv-quotes-grid .cv-quote-item:nth-child(2) {
    margin-top: 60px;
}

.cv-quote-item {
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 50px 40px;
    transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
}

.cv-quote-item:hover {
    border-color: var(--clr-accent);
    transform: translateY(-10px);
}

.cv-quote-mark {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 0.6;
    color: var(--clr-accent);
    margin-bottom: 30px;
    display: block;
    opacity: 0.7;
}

.cv-quote-text {
    font-size: 1.1rem;
    line-height: 1.9;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cv-client {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cv-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--clr-accent);
}

.cv-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-client-info strong {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.cv-client-info span {
    font-size: 0.75rem;
    opacity: 0.4;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .cv-quotes-grid {
        grid-template-columns: 1fr;
    }

    .cv-quotes-grid .cv-quote-item:nth-child(2) {
        margin-top: 0;
    }

    .cv-header h2 {
        font-size: 3.5rem;
    }

    .cv-bg-word {
        font-size: 60vw;
    }
}

/* -----------------------------------
   1. The Atelier Intro
-------------------------------------- */
.atelier-intro-section {
    padding: 150px 0;
}

.ai-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 20px;
}

.ai-heading {
    font-size: 7rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 40px;
}

.ai-heading em {
    font-style: italic;
}

.ai-image-block {
    position: relative;
}

.ai-image-block img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.ai-img-caption {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    background: var(--clr-black);
    color: var(--clr-white);
    padding: 18px 30px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.ai-big-number {
    font-size: 9rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.ai-big-number small {
    font-size: 2rem;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
}

.ai-lead {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ai-body {
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 40px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .ai-layout {
        grid-template-columns: 1fr;
    }

    .ai-heading {
        font-size: 4rem;
    }

    .ai-big-number {
        font-size: 5rem;
    }
}

/* -----------------------------------
   2. Couture Numbers Panel
-------------------------------------- */
.couture-numbers-section {
    padding: 80px 0;
    background: var(--clr-black);
    color: var(--clr-white);
}

.cn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 0;
    align-items: stretch;
}

.cn-item {
    padding: 60px 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.cn-item--highlight {
    background: var(--clr-accent);
}

.cn-item--highlight .cn-bar-fill {
    background: var(--clr-white);
}

.cn-item--highlight .cn-value {
    color: var(--clr-white);
    -webkit-text-stroke: none;
}

.cn-value {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--clr-white);
    margin-bottom: 15px;
}

.cn-value span {
    font-size: 2.5rem;
    opacity: 0.6;
}

.cn-label {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 20px;
}

.cn-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

.cn-bar-fill {
    height: 100%;
    background: var(--clr-accent);
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cn-desc {
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.4;
}

.cn-tagline {
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

.cn-tagline blockquote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 1024px) {
    .cn-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cn-tagline {
        grid-column: 1 / -1;
    }
}

/* -----------------------------------
   3. Collections Showcase
-------------------------------------- */
.collections-section {
    padding: 150px 0;
}

.coll-header {
    margin-bottom: 60px;
}

.coll-header h2 {
    font-size: 6rem;
    font-weight: 300;
}

.coll-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    height: 80vh;
    min-height: 600px;
}

.coll-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coll-item {
    flex: 1;
}

.coll-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.coll-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.coll-item:hover .coll-img-wrap img {
    transform: scale(1.08);
}

.coll-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--clr-white);
}

.coll-tag {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 10px;
    display: block;
}

.coll-overlay h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.coll-overlay p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 20px;
}

.coll-cta {
    color: var(--clr-white);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--clr-accent);
    padding-bottom: 5px;
    display: inline-block;
    transition: color 0.3s ease;
}

.coll-cta:hover {
    color: var(--clr-accent);
}

@media (max-width: 1024px) {
    .coll-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .coll-item {
        min-height: 300px;
    }

    .coll-header h2 {
        font-size: 3.5rem;
    }
}

/* -----------------------------------
   4. Heritage Section
-------------------------------------- */
.heritage-section {
    padding: 150px 0;
    background: var(--clr-off-white);
}

.hs-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.hs-visual {
    position: relative;
}

.hs-visual img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.hs-year-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    background: var(--clr-black);
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    padding: 25px 30px;
    writing-mode: vertical-rl;
}

.hs-content h2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 30px;
}

.hs-content h2 em {
    font-style: italic;
}

.hs-content>p {
    font-size: 1.1rem;
    opacity: 0.65;
    line-height: 1.8;
    margin-bottom: 50px;
}

.hs-pillars {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

.hs-pillar {
    text-align: center;
}

.hs-pillar-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 8px;
}

.hs-pillar-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .hs-grid {
        grid-template-columns: 1fr;
    }

    .hs-content h2 {
        font-size: 3rem;
    }
}

/* -----------------------------------
   5. Book a Fitting (Contact)
-------------------------------------- */
.baf-section {
    padding: 150px 0;
}

.baf-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: start;
}

.baf-label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 20px;
}

.baf-left h2 {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 60px;
    line-height: 1.1;
}

.baf-left h2 em {
    font-style: italic;
}

.baf-facts {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.baf-fact {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding-bottom: 35px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.08);
}

.baf-fact:last-child {
    border-bottom: none;
}

.baf-fact-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clr-accent);
    font-size: 0.9rem;
}

.baf-fact strong {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.5;
}

.baf-fact p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Form styles */
.baf-right {
    background: var(--clr-off-white);
    padding: 60px;
}

.baf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.baf-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.baf-field label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.5;
}

.baf-field input,
.baf-field select,
.baf-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.4s ease;
}

.baf-field select {
    appearance: none;
    cursor: pointer;
}

.baf-field input:focus,
.baf-field select:focus,
.baf-field textarea:focus {
    border-bottom-color: var(--clr-accent);
}

.baf-submit {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--clr-black);
    color: var(--clr-white);
    border: none;
    padding: 20px 40px;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.4s ease;
    margin-top: 10px;
}

.baf-submit:hover {
    background: var(--clr-accent);
}

@media (max-width: 1024px) {
    .baf-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .baf-left h2 {
        font-size: 3rem;
    }

    .baf-right {
        padding: 40px 30px;
    }

    .baf-row {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------
   Animated Hamburger Button
-------------------------------------- */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    align-items: flex-end;
}

.hb-line {
    display: block;
    height: 1.5px;
    background: var(--clr-white);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.hb-line:nth-child(1) {
    width: 28px;
}

.hb-line:nth-child(2) {
    width: 20px;
}

.hb-line:nth-child(3) {
    width: 14px;
}

.menu-toggle:hover .hb-line {
    width: 28px;
}

.menu-toggle.is-open .hb-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    width: 28px;
}

.menu-toggle.is-open .hb-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.is-open .hb-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    width: 28px;
}

/* Art Menu Footer */
.art-menu-footer {
    position: absolute;
    bottom: 60px;
    left: 10%;
    right: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
}

/* -----------------------------------
   Cinematic Split Hero
-------------------------------------- */
.split-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    background: var(--clr-black);
    overflow: hidden;
}

.sh-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 80px 140px 10%;
    position: relative;
    z-index: 2;
}

.sh-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 40px;
}

.sh-heading {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 60px;
}

.sh-line {
    display: block;
    font-size: clamp(3.5rem, 7vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--clr-white);
    text-transform: uppercase;
    overflow: hidden;
    animation: heroLineIn 1.2s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.sh-line:nth-child(1) {
    animation-delay: 0.1s;
}

.sh-line:nth-child(2) {
    animation-delay: 0.25s;
}

.sh-line:nth-child(3) {
    animation-delay: 0.4s;
}

.sh-italic em {
    font-style: italic;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--clr-accent);
}

@keyframes heroLineIn {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sh-cta-row {
    display: flex;
    gap: 25px;
    align-items: center;
}

.sh-btn-primary {
    background: var(--clr-accent);
    color: var(--clr-white);
    padding: 18px 40px;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.4s ease;
}

.sh-btn-primary:hover {
    background: var(--clr-white);
    color: var(--clr-black);
}

.sh-btn-ghost {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.sh-btn-ghost:hover {
    color: var(--clr-white);
    border-color: var(--clr-white);
}

.sh-right {
    position: relative;
    overflow: hidden;
}

.sh-img-frame {
    position: absolute;
    inset: 0;
}

.sh-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.85);
}

.sh-img-tag {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--clr-white);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: 12px 22px;
}

.sh-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.sh-scroll-hint .scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    animation: scrollPulse 2s ease infinite;
}

.sh-scroll-hint .scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.3);
    writing-mode: vertical-rl;
}

@media (max-width: 1024px) {
    .split-hero {
        grid-template-columns: 1fr;
    }

    .sh-right {
        height: 50vh;
    }

    .sh-left {
        padding: 120px 30px 60px;
    }
}

/* -----------------------------------
   Editorial Masonry Gallery
-------------------------------------- */
.gallery-section {
    padding: 120px 0 0;
}

.gallery-header {
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 6rem;
    font-weight: 300;
}

.gallery-header h2 em {
    font-style: italic;
    color: var(--clr-accent);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 55vh 35vh;
    gap: 6px;
}

.gm-item {
    position: relative;
    overflow: hidden;
}

.gm-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gm-item:hover img {
    transform: scale(1.08);
}

.gm-large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gm-col {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gm-col .gm-item {
    flex: 1;
}

.gm-wide {
    grid-column: 3;
    grid-row: 1;
}

.gm-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 40px 25px 20px;
    color: var(--clr-white);
    display: flex;
    align-items: flex-end;
    gap: 15px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s ease;
}

.gm-item:hover .gm-caption {
    opacity: 1;
    transform: translateY(0);
}

.gm-num {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--clr-accent);
}

.gm-caption h3 {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gm-large {
        grid-column: 1 / -1;
        height: 400px;
    }

    .gm-col {
        grid-column: 1;
        grid-row: auto;
        height: 300px;
    }

    .gm-wide {
        grid-column: 2;
        height: 300px;
    }

    .gallery-header h2 {
        font-size: 3.5rem;
    }
}

/* -----------------------------------
   Dark Contact Section
-------------------------------------- */
.dark-contact-section {
    background: #0a0a0a;
    color: var(--clr-white);
    padding: 0;
}

.dc-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 80vh;
}

.dc-left {
    padding: 100px 60px 100px 10%;
    background: #101010;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.dc-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 25px;
}

.dc-heading {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 60px;
}

.dc-heading em {
    font-style: italic;
}

.dc-facts {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dc-fact {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dc-fact i {
    font-size: 0.9rem;
    color: var(--clr-accent);
    margin-top: 4px;
    min-width: 16px;
}

.dc-fact strong {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 6px;
}

.dc-fact p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.dc-right {
    padding: 100px 10% 100px 60px;
    display: flex;
    align-items: center;
}

.dc-form {
    width: 100%;
}

.dc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.dc-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.dc-field label {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.35;
    margin-bottom: 12px;
}

.dc-field input,
.dc-field select,
.dc-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.4s ease;
}

.dc-field select option {
    background: #1a1a1a;
}

.dc-field input:focus,
.dc-field select:focus,
.dc-field textarea:focus {
    border-bottom-color: var(--clr-accent);
}

.dc-submit {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--clr-accent);
    color: var(--clr-white);
    border: none;
    padding: 20px 50px;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    font-family: var(--font-body);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.dc-submit:hover {
    background: var(--clr-white);
    color: var(--clr-black);
}

@media (max-width: 1024px) {
    .dc-inner {
        grid-template-columns: 1fr;
    }

    .dc-left {
        padding: 80px 30px;
    }

    .dc-right {
        padding: 60px 30px;
    }

    .dc-heading {
        font-size: 3rem;
    }

    .dc-row {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------
   Editorial Cards — Collections
-------------------------------------- */
.editorial-cards-section {
    padding: 150px 0;
    background: var(--clr-off-white);
}

.ec-intro {
    margin-bottom: 80px;
}

.ec-intro h2 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
}

.ec-intro h2 em {
    font-style: italic;
    color: var(--clr-accent);
}

.ec-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ec-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.4s ease;
}

.ec-card:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ec-card:hover {
    background: var(--clr-white);
}

.ec-card-img {
    height: 300px;
    overflow: hidden;
}

.ec-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.ec-card:hover .ec-card-img img {
    transform: scale(1.08);
}

.ec-card-body {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px 60px;
}

.ec-num {
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.12);
    line-height: 1;
    flex-shrink: 0;
}

.ec-info {
    flex: 1;
}

.ec-tag {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--clr-accent);
    display: block;
    margin-bottom: 12px;
}

.ec-info h3 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.ec-info p {
    font-size: 0.95rem;
    opacity: 0.55;
    line-height: 1.7;
    max-width: 500px;
}

.ec-link {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-black);
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.ec-card:hover .ec-link {
    background: var(--clr-black);
    color: var(--clr-white);
    border-color: var(--clr-black);
}

@media (max-width: 1024px) {
    .ec-card {
        grid-template-columns: 1fr;
    }

    .ec-card-img {
        height: 220px;
    }

    .ec-card-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
    }

    .ec-intro h2 {
        font-size: 3.5rem;
    }

    .ec-num {
        font-size: 3rem;
    }
}

/* -----------------------------------
   Filmstrip Gallery
-------------------------------------- */
.filmstrip-gallery {
    padding: 120px 0 0;
}

.fg-header {
    margin-bottom: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.fg-header h2 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
}

.fg-header h2 em {
    font-style: italic;
    color: var(--clr-accent);
}

.fg-count {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.35;
    padding-bottom: 15px;
}

.fg-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr 1fr 1fr;
    height: 75vh;
    gap: 4px;
    overflow: hidden;
}

.fg-item {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.fg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s ease;
    filter: grayscale(30%);
}

.fg-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.fg-item-info {
    position: absolute;
    bottom: 25px;
    left: 20px;
    color: var(--clr-white);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.fg-item:hover .fg-item-info {
    opacity: 1;
    transform: translateY(0);
}

.fg-item-info span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--clr-accent);
    display: block;
    margin-bottom: 5px;
}

.fg-item-info h3 {
    font-size: 0.95rem;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .fg-strip {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 250px);
        height: auto;
    }

    .fg-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .fg-header h2 {
        font-size: 3.5rem;
    }
}

/* -----------------------------------
   Atmospheric Contact
-------------------------------------- */
.atm-contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.atm-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.atm-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.atm-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(5, 5, 5, 0.97) 0%,
            rgba(5, 5, 5, 0.92) 45%,
            rgba(5, 5, 5, 0.7) 70%,
            rgba(5, 5, 5, 0.4) 100%);
}

.atm-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.atm-left {
    padding: 120px 60px 120px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--clr-white);
}

.atm-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 30px;
}

.atm-heading {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 70px;
    color: var(--clr-white);
}

.atm-heading em {
    font-style: italic;
}

.atm-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.atm-detail {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.atm-detail strong {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.35;
    color: var(--clr-white);
}

.atm-detail span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: right;
}

.atm-form-panel {
    padding: 120px 10% 120px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.atm-form-label {
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 50px;
}

.atm-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.atm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.atm-field {
    margin-bottom: 25px;
}

.atm-field input,
.atm-field select,
.atm-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.4s ease;
}

.atm-field input::placeholder,
.atm-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.atm-field select option {
    background: #111;
}

.atm-field input:focus,
.atm-field select:focus,
.atm-field textarea:focus {
    border-bottom-color: var(--clr-accent);
}

.atm-submit {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--clr-accent);
    color: var(--clr-white);
    border: none;
    padding: 20px 50px;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    font-family: var(--font-body);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
    margin-top: 15px;
}

.atm-submit:hover {
    background: var(--clr-white);
    color: var(--clr-black);
}

@media (max-width: 1024px) {
    .atm-content {
        grid-template-columns: 1fr;
    }

    .atm-left {
        padding: 100px 30px 60px;
    }

    .atm-form-panel {
        padding: 60px 30px 100px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .atm-heading {
        font-size: 3rem;
    }

    .atm-form-row {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------
   The People — Horizontal Strip
-------------------------------------- */
.people-section {
    padding: 120px 0 0;
    overflow: hidden;
}

.ppl-header {
    margin-bottom: 60px;
}

.ppl-header h2 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
}

.ppl-header h2 em {
    font-style: italic;
    color: var(--clr-accent);
}

.ppl-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ppl-card {
    position: relative;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
    cursor: pointer;
}

.ppl-card--center {
    border-left: 2px solid var(--clr-accent);
    border-right: 2px solid var(--clr-accent);
}

.ppl-img {
    position: absolute;
    inset: 0;
}

.ppl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), filter 0.6s ease;
    filter: grayscale(60%);
}

.ppl-card:hover .ppl-img img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.ppl-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ppl-role {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--clr-accent);
}

.ppl-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
}

.ppl-num {
    font-size: 4.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    line-height: 1;
    position: absolute;
    top: 25px;
    right: 30px;
}

@media (max-width: 1024px) {
    .ppl-strip {
        grid-template-columns: 1fr;
    }

    .ppl-card {
        height: 350px;
    }

    .ppl-card--center {
        border: none;
        border-top: 2px solid var(--clr-accent);
        border-bottom: 2px solid var(--clr-accent);
    }

    .ppl-header h2 {
        font-size: 3.5rem;
    }
}

/* -----------------------------------
   Pull-Quote Testimonials
-------------------------------------- */
.pullquote-section {
    background: var(--clr-white);
    padding: 0;
}

.pq-wrapper {
    width: 100%;
}

.pq-label {
    padding: 80px 10% 40px;
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    opacity: 0.35;
}

.pq-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    min-height: 280px;
    padding: 0 10%;
    gap: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transition: padding 0.5s ease;
}

.pq-item--dark {
    background: var(--clr-black);
    color: var(--clr-white);
}

.pq-item--light {
    background: var(--clr-white);
    color: var(--clr-black);
}

.pq-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pq-graphic {
    font-size: 12rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    color: var(--clr-accent);
    opacity: 0.3;
    user-select: none;
}

.pq-item--light .pq-graphic {
    opacity: 0.12;
}

.pq-body {
    padding: 50px 0;
}

.pq-text {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 800px;
}

.pq-item--dark .pq-text {
    color: rgba(255, 255, 255, 0.85);
}

.pq-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pq-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(30%);
    border: 2px solid var(--clr-accent);
}

.pq-author strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
}

.pq-author span {
    font-size: 0.75rem;
    opacity: 0.45;
}

.pq-item--dark .pq-author strong {
    color: var(--clr-white);
}

.pq-item--dark .pq-author span {
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1024px) {
    .pq-item {
        grid-template-columns: 100px 1fr;
        gap: 20px;
        padding: 0 24px;
    }

    .pq-graphic {
        font-size: 6rem;
    }

    .pq-text {
        font-size: 1.1rem;
    }
}

/* -----------------------------------
   Split-Row Gallery
-------------------------------------- */
.splitrow-gallery {
    padding: 120px 0 0;
}

.srg-header {
    margin-bottom: 60px;
}

.srg-header h2 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
}

.srg-header h2 em {
    font-style: italic;
    color: var(--clr-accent);
}

.srg-list {
    width: 100%;
}

.srg-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 440px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.srg-row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.srg-row--rev {
    grid-template-columns: 1fr 2fr;
}

.srg-img {
    overflow: hidden;
    position: relative;
}

.srg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.srg-row:hover .srg-img img {
    transform: scale(1.05);
}

.srg-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: var(--clr-off-white);
}

.srg-row--rev .srg-meta {
    background: var(--clr-black);
    color: var(--clr-white);
}

.srg-num {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--clr-accent);
    display: block;
    margin-bottom: 20px;
}

.srg-meta h3 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
}

.srg-meta p {
    font-size: 0.95rem;
    opacity: 0.5;
    line-height: 1.7;
}

@media (max-width: 1024px) {

    .srg-row,
    .srg-row--rev {
        grid-template-columns: 1fr;
    }

    .srg-row .srg-img {
        height: 280px;
    }

    .srg-meta {
        padding: 40px 30px;
    }

    .srg-meta h3 {
        font-size: 2rem;
    }

    .srg-header h2 {
        font-size: 3.5rem;
    }
}

/* -----------------------------------
   Location Section with Card
-------------------------------------- */
.location-section {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.loc-map {
    position: absolute;
    inset: 0;
}

.loc-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.loc-card {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    background: var(--clr-black);
    color: var(--clr-white);
    padding: 50px 50px 40px;
    width: 340px;
    z-index: 2;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.loc-card-label {
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 15px;
}

.loc-card h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 35px;
}

.loc-card h3 em {
    font-style: italic;
}

.loc-facts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.loc-fact {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.loc-fact i {
    font-size: 0.8rem;
    color: var(--clr-accent);
    margin-top: 3px;
    min-width: 14px;
}

.loc-fact span {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.65;
}

.loc-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-accent);
    color: var(--clr-white);
    padding: 14px 30px;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.4s ease;
    width: 100%;
    justify-content: center;
}

.loc-btn:hover {
    background: var(--clr-white);
    color: var(--clr-black);
}

@media (max-width: 1024px) {
    .location-section {
        height: auto;
    }

    .loc-map {
        position: relative;
        height: 300px;
    }

    .loc-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        padding: 40px 24px;
    }
}

/* -----------------------------------
   Bios — Staggered Team Cards
-------------------------------------- */
.bios-section {
    padding: 150px 0;
    background: var(--clr-black);
    color: var(--clr-white);
}

.bios-header {
    margin-bottom: 80px;
}

.bios-header h2 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
}

.bios-header h2 em {
    font-style: italic;
    color: var(--clr-accent);
}

.bios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.bio-card {
    background: #111;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.bio-card--offset {
    transform: translateY(60px);
}

.bio-card--offset:hover {
    transform: translateY(50px);
}

.bio-card:not(.bio-card--offset):hover {
    transform: translateY(-8px);
}

.bio-photo {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.bio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1), filter 0.6s ease;
    filter: grayscale(50%);
}

.bio-card:hover .bio-photo img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.bio-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--clr-accent);
    color: var(--clr-white);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    padding: 7px 14px;
    font-weight: 600;
}

.bio-text {
    padding: 30px 30px 35px;
}

.bio-role {
    font-size: 0.6rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 10px;
}

.bio-name {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--clr-white);
    margin-bottom: 12px;
}

.bio-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1024px) {
    .bios-grid {
        grid-template-columns: 1fr;
    }

    .bio-card--offset {
        transform: none;
    }

    .bios-header h2 {
        font-size: 3.5rem;
    }
}

/* -----------------------------------
   Star Voice — Review Cards
-------------------------------------- */
.star-voice-section {
    padding: 150px 0;
    background: var(--clr-off-white);
}

.sv-header {
    margin-bottom: 70px;
}

.sv-header h2 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
}

.sv-header h2 em {
    font-style: italic;
    color: var(--clr-accent);
}

.sv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.06);
}

.sv-card {
    background: var(--clr-white);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: background 0.4s ease, transform 0.4s ease;
}

.sv-card--featured {
    background: var(--clr-black);
    color: var(--clr-white);
}

.sv-card:not(.sv-card--featured):hover {
    background: #fafafa;
    transform: translateY(-4px);
}

.sv-stars {
    display: flex;
    gap: 5px;
    color: #c9a96e;
    font-size: 0.85rem;
}

.sv-card--featured .sv-stars {
    color: var(--clr-accent);
}

.sv-text {
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 300;
    flex: 1;
}

.sv-card--featured .sv-text {
    color: rgba(255, 255, 255, 0.85);
}

.sv-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sv-card--featured .sv-author {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.sv-author img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-accent);
}

.sv-author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
}

.sv-author span {
    font-size: 0.75rem;
    opacity: 0.4;
}

.sv-card--featured .sv-author strong {
    color: var(--clr-white);
}

@media (max-width: 1024px) {
    .sv-cards {
        grid-template-columns: 1fr;
    }

    .sv-header h2 {
        font-size: 3.5rem;
    }
}

/* -----------------------------------
   Numbered Sequence Gallery
-------------------------------------- */
.numseq-gallery {
    padding: 120px 0 0;
}

.nsg-header {
    margin-bottom: 60px;
}

.nsg-header h2 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
}

.nsg-header h2 em {
    font-style: italic;
    color: var(--clr-accent);
}

.nsg-sequence {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nsg-item {
    position: relative;
    overflow: hidden;
    height: 60vh;
    min-height: 380px;
    cursor: crosshair;
}

.nsg-item--full {
    height: 70vh;
    min-height: 480px;
}

.nsg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.nsg-item:hover img {
    transform: scale(1.05);
}

.nsg-label {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: var(--clr-white);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 18px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.nsg-label span {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--clr-accent);
    font-weight: 600;
}

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

@media (max-width: 1024px) {
    .nsg-pair {
        grid-template-columns: 1fr;
    }

    .nsg-item {
        height: 280px;
        min-height: unset;
    }

    .nsg-item--full {
        height: 350px;
        min-height: unset;
    }

    .nsg-header h2 {
        font-size: 3.5rem;
    }
}

/* -----------------------------------
   Side-by-Side Map
-------------------------------------- */
.sidemap-section {
    display: grid;
    grid-template-columns: 420px 1fr;
    height: 600px;
}

.sidemap-info {
    background: var(--clr-black);
    color: var(--clr-white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.sidemap-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 18px;
}

.sidemap-info h2 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--clr-white);
}

.sidemap-info h2 em {
    font-style: italic;
}

.sidemap-facts {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 50px;
}

.sidemap-fact {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.sidemap-fact-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clr-accent);
    font-size: 0.8rem;
}

.sidemap-fact strong {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 5px;
}

.sidemap-fact p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.sidemap-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-accent);
    color: var(--clr-white);
    padding: 16px 32px;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.4s ease;
}

.sidemap-btn:hover {
    background: var(--clr-white);
    color: var(--clr-black);
}

.sidemap-map {
    overflow: hidden;
}

.sidemap-map iframe {
    display: block;
}

@media (max-width: 1024px) {
    .sidemap-section {
        grid-template-columns: 1fr;
        height: auto;
    }

    .sidemap-info {
        padding: 60px 30px;
    }

    .sidemap-map {
        height: 350px;
    }
}

/* End of Styles */