/* 
   PiDials - Supporting Pages Stylesheet
   Shared styles for Gallery, Process, About, FAQ, Contact, and Policies pages
*/

/* Page Container */
.page-container {
    min-height: 100vh;
}

/* Page Hero - Luxurious Dark Aesthetic */
.page-hero {
    text-align: center;
    padding: 180px 20px 100px;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: attr(data-background-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18vw;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 4vw;
    white-space: nowrap;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Page Content */
.page-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 60px;
}

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

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* --- Gallery Page Specific --- */
.gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
}

.gallery-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.gallery-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: var(--bg-silver);
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card-image {
    transform: scale(1.1);
}

.gallery-card-content {
    padding: 30px;
    text-align: center;
}

.gallery-card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-card-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.gallery-card-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Process Page Specific --- */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    position: relative;
}

.process-step:nth-child(even) .process-step-content {
    order: 2;
}

.process-step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 0 10px var(--bg-white);
    border: 2px solid var(--bg-white);
}

.process-step-content {
    padding: 40px;
}

.process-step-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.process-step-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.process-step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-silver);
    border-radius: 16px;
    padding: 40px;
    min-height: 300px;
}

/* --- About Page Specific --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- About Page Specific --- */

/* About Intro Section */
.about-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 60px;
}

.about-intro-content {
    padding-right: 40px;
}

.intro-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-large {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.about-intro-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.section-intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

/* Problem/Solution Grid */
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.problem-card,
.solution-card {
    padding: 50px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.problem-card {
    background: #fafafa;
}

.solution-card {
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border: 2px solid var(--accent);
}

.card-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-card h3,
.solution-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.problem-card p,
.solution-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Comparison Table */
.comparison-table {
    display: flex;
    margin: 40px 0;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.comparison-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.comparison-column:first-child {
    flex: 0 0 200px;
}

.comparison-header,
.comparison-row-label,
.comparison-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 90px;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
    text-align: center;
    border-right: 1px solid #eee;
}

.comparison-column:last-child .comparison-header,
.comparison-column:last-child .comparison-row-label,
.comparison-column:last-child .comparison-cell {
    border-right: none;
}

.comparison-header {
    height: 140px;
    flex-direction: column;
    background: #fafafa;
    font-weight: 700;
}

.comparison-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin: 0;
}

.comparison-header.empty {
    background: #fafafa;
}

.comparison-column.highlight {
    background: #fffcf5;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    z-index: 1;
    border: 2px solid var(--accent);
    margin: -2px;
    /* Pull out of normal flow to show border */
    border-radius: 12px;
}

.comparison-column.highlight .comparison-header {
    background: #111;
    color: #fff;
    border-bottom: none;
}

.comparison-column.highlight .comparison-cell {
    color: var(--text-dark);
    font-weight: 600;
}

.comparison-row-label {
    justify-content: flex-start;
    padding-left: 30px;
    background: #fafafa;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.comparison-cell {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.comparison-column *:last-child {
    border-bottom: none;
}

.comparison-note {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 30px;
    font-size: 1.05rem;
}

/* Process Visual Steps */
.process-visual-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.process-visual-step {
    text-align: center;
    padding: 40px 30px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.process-visual-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 700;
}

.step-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.process-visual-step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-visual-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Value Proposition Grid */
.value-proposition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.value-prop-card {
    padding: 50px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-prop-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.prop-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.value-prop-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-prop-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Tech Cards */
.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.tech-card {
    padding: 40px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.tech-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.tech-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.tech-benefit {
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 20px;
    background: #fff;
    border-left: 3px solid var(--accent);
    border-radius: 4px;
}

.tech-benefit strong {
    color: var(--accent);
}

/* Stat Highlights */
.stat-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid var(--accent);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Founder Section */
.founder-section {
    margin-top: 80px;
}

.founder-profile {
    max-width: 900px;
    margin: 0 auto;
}

.founder-text {
    padding: 60px;
    background: #fafafa;
    border-radius: 8px;
    border-left: 5px solid var(--accent);
}

.founder-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.founder-quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-left: 30px;
    border-left: 3px solid var(--accent);
}

.founder-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.founder-signature {
    margin-top: 40px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Pull Quote */
.pull-quote-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.pull-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
    quotes: "" " " "" "'" "'";
}

.pull-quote::before {
    content: open-quote;
    color: var(--accent);
}

.pull-quote::after {
    content: close-quote;
    color: var(--accent);
}

/* --- FAQ Page Specific --- */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.faq-active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.faq-active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* --- Contact Page Specific --- */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}

/* --- Policies Page Specific --- */
.policies-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 60px;
}

.policy-title {
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
}

.policy-content {
    color: var(--text-muted);
    line-height: 1.8;
}

.policy-content h4 {
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* Policy Callout - Engineering Manual Style */
.policy-callout {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--text-dark);
    padding: 20px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: var(--font-mono);
    border-radius: 4px;
}

/* --- New Process Page Styles --- */

.skip-callout {
    margin-top: 20px;
    padding: 20px;
    background: rgba(138, 0, 0, 0.03);
    border-left: 3px solid #8a0000;
    font-size: 0.9rem;
}

.skip-callout strong {
    color: #8a0000;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-mono);
}

.time-section {
    padding: 100px 0;
    background: #050505;
    color: white;
    text-align: center;
}

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

.time-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-card h4 {
    color: var(--accent);
    margin-bottom: 15px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Page CTA Section */
.page-cta {
    text-align: center;
    padding: 100px 20px;
    background: var(--primary);
    color: white;
}

.page-cta-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: white;
}

.page-cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: var(--transition);
}

.page-cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-5px);
    box-shadow: var(--glow-accent);
}

/* Responsive Design for Pages */
@media (max-width: 900px) {
    .page-title {
        font-size: 3rem;
    }

    .page-content {
        padding: 60px 30px;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-left: 0;
    }

    .process-step-content {
        position: relative;
        padding-left: 90px;
    }

    .process-step:nth-child(even) .process-step-content {
        order: 0;
    }

    .process-step-number {
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .contact-form {
        padding: 40px 30px;
    }

    .process-step-visual {
        margin-top: 20px;
        z-index: 2;
        /* Ensure images sit above line if they cross, but margin should prevent it */
        position: relative;
        background: white;
        /* Hide line behind image */
    }

    .time-grid {
        grid-template-columns: 1fr;
        /* Stack timeline cards vertically */
    }

    /* About Page Responsive */
    .about-intro-section {
        grid-template-columns: 1fr;
        padding: 60px 30px;
    }

    .about-intro-image {
        height: 400px;
    }

    .problem-solution-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        display: block;
        font-size: 0.85rem;
    }

    .comparison-column {
        display: block;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
    }

    .comparison-header,
    .comparison-row-label,
    .comparison-cell {
        height: auto;
        min-height: 50px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .comparison-column.highlight {
        margin: 0 0 30px 0;
    }

    .comparison-row-label {
        display: none;
    }

    .process-visual-steps {
        grid-template-columns: 1fr;
    }

    .value-proposition-grid {
        grid-template-columns: 1fr;
    }

    .tech-cards-grid {
        grid-template-columns: 1fr;
    }

    .stat-highlights {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {
    .page-hero {
        padding: 60px 20px;
        margin-top: 60px;

    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .page-content {
        padding: 40px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .page-cta-title {
        font-size: 2rem;
    }
}

/* --- Contact Page Revamp - Luxury & User Friendly --- */

.contact-revamp-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0px 100px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
}

.contact-info-panel {
    background: #111;
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin: 20px 0 30px;
    line-height: 1.1;
}

.sidebar-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
}

.contact-detail-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-grow: 1;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.detail-item:hover .detail-icon {
    background: var(--accent);
    color: #fff;
    transform: translateY(-5px);
}

.detail-content h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 8px 0;
}

.detail-content p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

.social-links-luxury {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}

.contact-form-panel {
    padding: 60px;
}

.luxury-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.luxury-input,
.luxury-textarea {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.luxury-input:focus,
.luxury-textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.luxury-textarea {
    min-height: 120px;
    resize: none;
}

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

.luxury-form .form-group {
    margin-bottom: 40px;
}

.attachment-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.attachment-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.file-list-display {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.file-item {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    border: 1px solid #eee;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.file-info i {
    color: var(--accent);
}

.file-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.remove-file {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px;
    transition: color 0.2s ease;
}

.remove-file:hover {
    color: #f44336;
}

.luxury-submit {
    margin-top: 20px;
    height: 65px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.luxury-submit i {
    transition: transform 0.3s ease;
}

.luxury-submit:hover i {
    transform: translate(5px, -5px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    height: 50px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .contact-revamp-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-panel {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-panel {
        padding: 40px 30px;
    }

    .sidebar-title {
        font-size: 2.2rem;
    }
}

/* --- Process Page Revamp Styles --- */

.process-intro {
    background: #050505;
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.process-img-lux {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .process-img-lux {
    transform: scale(1.02);
}

/* Color Science Section */
.color-science-section {
    background: #000;
    color: white;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 900px) {
    .color-science-grid {
        grid-template-columns: 1fr;
    }
}

.color-spectrum-list {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spectrum-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-mono);
    color: #ccc;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.spectrum-item:hover {
    padding-left: 10px;
    color: var(--accent);
    border-color: var(--accent);
}

.spectrum-item span {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spectrum-img {
    width: 100%;
    border-radius: 50%;
    /* Circle or keep rect? Image was rect. Let's keep rect but fancy */
    border-radius: 12px;
    box-shadow: 0 0 80px rgba(var(--accent-rgb), 0.1);
    /* Need to check if accent-rgb exists, usually just hex */
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.15);
}

/* --- PREMIUM PROCESS PAGE REVAMP --- */

.process-page-dark {
    background-color: #050505;
    color: #e0e0e0;
}

.dark-theme {
    background-color: #050505;
}

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

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.2);
    }
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.4) 50%, #050505 100%);
}

.hero-content-center {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-label {
    font-family: var(--font-mono);
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title-lux {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 1;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-lux {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

/* Steps Layout */
.process-steps-container {
    padding: 100px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.step-section {
    min-height: 90vh;
    /* Scrollytelling feel */
    display: flex;
    align-items: center;
    padding: 0 40px;
    margin-bottom: 50px;
}

.step-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.alt-layout .step-content-wrapper {
    grid-template-columns: 1fr 1.5fr 1fr;
    direction: rtl;
    /* Flip visual order */
}

.alt-layout .step-content-wrapper>* {
    direction: ltr;
    /* Reset text direction */
}

.step-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alt-layout .step-meta {
    text-align: left;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 0.8;
}

.step-category {
    font-family: var(--font-mono);
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.step-visual img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.6s ease;
}

.step-section:hover .step-visual img {
    transform: scale(1.02);
    filter: brightness(1);
}

.visual-placeholder-lux {
    aspect-ratio: 16/9;
    background: radial-gradient(circle, #1a1a1a 0%, #050505 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    gap: 20px;
}

.visual-placeholder-lux i {
    font-size: 4rem;
    opacity: 0.8;
}

.step-narrative h3 {
    font-size: 3rem;
    /* Very large headers */
    color: white;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.step-narrative p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #999;
}

/* Color Science Lux */
.color-science-lux {
    padding: 150px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    margin: 100px 0;
    position: relative;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.color-science-header {
    text-align: center;
    margin-bottom: 80px;
}

.step-number-large {
    display: block;
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
    border: 1px solid var(--accent);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
}

.color-science-header h2 {
    font-size: 5rem;
    color: white;
    margin-bottom: 15px;
}

.color-science-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cs-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 30px;
}

.cs-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 100px rgba(var(--accent), 0.2);
}

/* Final CTA Lux */
.process-cta-lux {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #111 0%, #050505 100%);
}

.cta-content h2 {
    font-size: 5rem;
    color: white;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 50px;
}

.btn-lux {
    display: inline-block;
    padding: 20px 60px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.btn-lux:hover {
    background: white;
    color: black;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 1024px) {

    .step-content-wrapper,
    .alt-layout .step-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        direction: ltr;
        /* Reset visual flow on mobile */
    }

    .step-meta,
    .alt-layout .step-meta {
        text-align: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .step-number {
        font-size: 5rem;
    }

    .process-hero-lux .hero-title-lux {
        font-size: 3.5rem;
    }

    .color-science-content {
        grid-template-columns: 1fr;
    }

    .color-science-header h2 {
        font-size: 3rem;
    }
}

/* --- Colors Page Styles --- */
.color-category-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cat-label {
    display: block;
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.color-category-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.color-category-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.color-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.color-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.color-swatch-large {
    height: 200px;
    width: 100%;
}

.color-info {
    padding: 30px;
}

.color-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.color-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.highlight-bg-light {
    background: #fdfdfd;
    border-top: 1px solid #eee;
    padding: 120px 0;
    text-align: center;
}

/* --- PREMIUM PROCESS PAGE LIGHT THEME --- */

.process-page-light {
    background-color: #ffffff;
    color: var(--text-dark);
}

.light-theme {
    background-color: #ffffff;
}

/* Premium Hero Light */
.process-hero-lux-light {
    height: 90vh;
    /* Slightly shorter than full */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #fdfdfd;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-img-light {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    /* Very subtle background */
    filter: grayscale(100%);
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

.hero-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-label-light {
    font-family: var(--font-mono);
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-title-light {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.hero-subtitle-light {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.scroll-indicator-light {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.5;
    color: var(--text-muted);
}

.scroll-indicator-light span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator-light .line-light {
    width: 1px;
    height: 60px;
    background: #ccc;
}

/* Steps Layout Light */
.process-steps-container-light {
    padding: 100px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.step-section-light {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 40px;
    margin-bottom: 80px;
}

.step-content-wrapper-light {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.alt-layout-light .step-content-wrapper-light {
    grid-template-columns: 1fr 1.5fr 0.5fr;
    /* Visual flip handled by grid areas or order */
}

/* Grid Area Management for Alt Layout */
.alt-layout-light .step-meta-light {
    order: 3;
    text-align: left;
}

.alt-layout-light .step-visual-light {
    order: 2;
}

.alt-layout-light .step-narrative-light {
    order: 1;
    text-align: right;
}

.step-meta-light {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-number-light {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: #f0f0f0;
    /* Very subtle grey */
    line-height: 1;
    font-weight: 700;
}

.step-category-light {
    display: block;
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.step-visual-light img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    transition: transform 0.6s ease;
}

.step-section-light:hover .step-visual-light img {
    transform: scale(1.02);
}

.visual-placeholder-light {
    aspect-ratio: 16/9;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 4px;
    gap: 20px;
}

.visual-placeholder-light span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #555;
}

.step-narrative-light h3 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.step-narrative-light p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Color Promo Section */
.color-promo-light {
    background: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin: 100px 0;
}

.color-promo-content {
    padding-left: 40px;
}

.step-number-light-small {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #e0e0e0;
    display: block;
    margin-bottom: 20px;
}

.color-promo-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.color-promo-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-lux-light {
    display: inline-block;
    padding: 18px 50px;
    background: var(--text-dark);
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-lux-light:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.color-promo-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}



/* Mobile Responsive Light */
@media (max-width: 1024px) {

    .step-content-wrapper-light,
    .alt-layout-light .step-content-wrapper-light {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .alt-layout-light .step-meta-light,
    .alt-layout-light .step-visual-light,
    .alt-layout-light .step-narrative-light {
        order: initial;
        text-align: center;
    }

    .step-meta-light {
        align-items: center;
    }

    .step-number-light {
        font-size: 4rem;
    }

    .hero-title-light {
        font-size: 3.5rem;
    }

    .color-promo-light {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 20px;
    }

    .color-promo-content {
        padding-left: 0;
    }

    .color-promo-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Process Phase 3: The Alchemy of Time --- */

.luxury-process-page {
    background: #fff;
    overflow-x: hidden;
}

/* Full-Bleed Section Utility */
.luxury-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 100px 0;
}

.bg-white {
    background: #f8f8f8;
}

.bg-subtle {
    background: #fcfcfc;
}

.bg-silver {
    background: #f1f1f1;
}

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

/* Step Header */
.step-header {
    margin-bottom: 80px;
    text-align: center;
}

.step-number-fancy {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    opacity: 0.8;
}

.step-title-fancy {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0;
    font-weight: 400;
}

/* Luxury Grid */
.luxury-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.luxury-grid.reversed {
    grid-template-columns: 0.9fr 1.1fr;
}

.luxury-grid.reversed .luxury-content {
    order: 2;
}

/* Glass Detail Cards */
.glass-detail-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.glass-detail-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.glass-detail-card p {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 30px;
}

.value-vessel {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
}

.value-vessel i {
    color: var(--accent);
    font-size: 1.2rem;
}

.value-vessel span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Visual Presentation */
.luxury-visual-wrap {
    position: relative;
}

.luxury-image-vessel {
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-slow);
}

.luxury-image-vessel img {
    width: 100%;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-visual-wrap:hover .luxury-image-vessel img {
    transform: scale(1.05);
}

.visual-ornament {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 12rem;
    color: rgba(0, 0, 0, 0.02);
    top: -40px;
    right: -40px;
    z-index: 1;
    pointer-events: none;
}

/* Materiality 3.0 */
.material-intro-lux {
    text-align: center;
    margin-bottom: 100px;
}

.material-cards-lux {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mat-card-3 {
    padding: 60px 40px;
    background: #fff;
    border: 1px solid #eee;
    transition: var(--transition);
    text-align: left;
}

.mat-card-3:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.mat-card-3 i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 30px;
    display: block;
}

.mat-card-3 h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.mat-card-3 p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Final Commitment */
.excellence-lux {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.excellence-lux blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-style: italic;
}

/* Mobile Adaptations */
@media (max-width: 1024px) {
    .luxury-section {
        padding: 100px 0;
    }

    .luxury-grid,
    .luxury-grid.reversed {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .luxury-container {
        padding: 0 30px;
    }

    .step-title-fancy {
        font-size: 2.8rem;
    }

    .glass-detail-card {
        padding: 40px 30px;
    }

    .material-cards-lux {
        grid-template-columns: 1fr;
    }

    .visual-ornament {
        display: none;
    }

    .luxury-content {
        order: 1 !important;
    }

    .luxury-visual-wrap {
        order: 2 !important;
    }
}