/* Process Page - Minimal Luxury Aesthetic */
body.process {
    --terracotta: #C9A661;
    --forest: #3E5641;
    --gold: #C9A661;
    --gold-rgb: 201, 166, 97;
    --stone: #9B8F7E;
}

body.process .icon {
    color: var(--gold);
}

/* Hero Section */
.process-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 6rem 0;
}

.process-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(13, 17, 23, 0.55) 0%, rgba(13, 17, 23, 0.85) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(var(--gold-rgb), 0.03) 10px,
            rgba(var(--gold-rgb), 0.03) 11px
        );
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: subtleShift 20s ease-in-out infinite;
}

.process-hero-content {
    max-width: 1100px;
    padding: 0 2rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.process-hero .hero-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
}
.process-hero h1 {
    font-size: clamp(3rem, 9vw, 7.25rem);
    line-height: 1.04;
    color: var(--cream);
    margin-bottom: 2.5rem;
    font-weight: 900;
    letter-spacing: -2.2px;
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.process-hero .hero-tagline {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: rgba(255, 248, 240, 0.8);
    margin-bottom: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: rgba(255, 248, 240, 0.7);
    font-weight: 500;
}

.hero-trust-row span {
    white-space: nowrap;
}

.hero-trust-row .trust-dot {
    color: var(--gold);
}

/* Container Utilities */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Overview Section */
.overview-section {
    padding: 8rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.overview-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(var(--gold-rgb), 0.04), transparent 55%),
        radial-gradient(circle at 85% 50%, rgba(13, 17, 23, 0.02), transparent 60%);
    pointer-events: none;
}

.overview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.overview-video-wrapper {
    margin: 0;
    max-width: 420px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    z-index: 1;
    justify-self: end;
}

.overview-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: var(--ink);
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(135deg, var(--slate) 0%, var(--ink) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--cream);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.01);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: rgba(255, 248, 240, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cream);
    border: 2px solid rgba(255, 248, 240, 0.3);
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background: rgba(255, 248, 240, 0.25);
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 1.25rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.overview-text {
    text-align: left;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.overview-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--slate);
    max-width: 800px;
    margin: 0 0 2rem;
}

.overview-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    margin-bottom: 1rem;
}

.overview-stats {
    display: grid;
    gap: 0.75rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.overview-stats .stat-pill {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.4px;
    white-space: normal;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: none;
}

.overview-stats .stat-pill::before {
    content: '';
    width: 0.35rem;
    height: 0.35rem;
    background: var(--gold);
    display: inline-block;
    border-radius: 50%;
}

/* Process Steps Section */
.process-steps-section {
    padding: 6.5rem 2rem;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.process-steps-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(var(--gold-rgb), 0.05), transparent 60%),
        radial-gradient(circle at 80% 40%, rgba(255, 248, 240, 0.04), transparent 60%);
    pointer-events: none;
}

.steps-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.steps-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    font-weight: 700;
}

.steps-header p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 248, 240, 0.7);
    opacity: 1;
}

.process-steps {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1100px;
    border-top: 1px solid rgba(255, 248, 240, 0.12);
    position: relative;
    z-index: 1;
}

.process-step {
    padding: 2.5rem 2rem;
    border-bottom: 1px solid rgba(255, 248, 240, 0.08);
    display: grid;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 248, 240, 0.04);
}

.process-step:nth-child(even) {
    background: rgba(255, 248, 240, 0.08);
}

.step-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-items: start;
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.step-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    color: var(--cream);
    line-height: 1.3;
    margin: 0 0 0.6rem;
    font-weight: 700;
}

.step-header p {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: rgba(255, 248, 240, 0.75);
    line-height: 1.8;
    margin: 0;
    max-width: 40rem;
}

.step-deliverables {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.step-deliverables span {
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(255, 248, 240, 0.18);
    font-size: 0.7rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.75);
    font-weight: 600;
}

/* Process Steps Variants */
.process-steps-section.variant-sash .process-steps {
    border-top: none;
}

.process-steps-section.variant-sash .process-step {
    background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.14) 0%, rgba(13, 17, 23, 0) 45%);
    border-bottom: 1px solid rgba(255, 248, 240, 0.12);
    padding: 3rem 2.5rem;
}

.process-steps-section.variant-sash .process-step:nth-child(even) {
    background: linear-gradient(270deg, rgba(var(--gold-rgb), 0.12) 0%, rgba(13, 17, 23, 0) 45%);
}

.process-steps-section.variant-sash .step-header {
    position: relative;
}

.process-steps-section.variant-sash .step-number {
    position: absolute;
    top: -0.35rem;
    right: 1.5rem;
    font-size: 4.6rem;
    letter-spacing: 6px;
    color: rgba(255, 248, 240, 0.08);
    margin: 0;
    pointer-events: none;
}

.process-steps-section.variant-sash .step-header h3,
.process-steps-section.variant-sash .step-header p {
    margin-right: 6.5rem;
}

.process-steps-section.variant-sash .step-deliverables {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 1.5rem;
}

.process-steps-section.variant-sash .step-deliverables span {
    border: none;
    padding: 0 0 0.35rem;
    border-bottom: 1px solid rgba(255, 248, 240, 0.18);
}


/* Quality Standards Section */
.standards-section {
    padding: 7rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.standards-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(var(--gold-rgb), 0.04), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(13, 17, 23, 0.04), transparent 55%);
    pointer-events: none;
}

.standards-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.standards-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.standards-header p {
    font-size: 1.1rem;
    color: var(--slate);
}

.standards-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.standards-principles {
    display: grid;
    gap: 1.25rem;
}

.principle {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(13, 17, 23, 0.12);
}

.principle-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.principle h3 {
    font-size: 1.35rem;
    color: var(--ink);
    margin: 0 0 0.4rem;
}

.principle p {
    margin: 0;
    color: rgba(13, 17, 23, 0.7);
    line-height: 1.7;
    max-width: 32rem;
}

.standards-specboard {
    background: var(--ink);
    border: 1px solid rgba(13, 17, 23, 0.1);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-content: start;
}

.spec-item {
    border-top: 1px solid rgba(255, 248, 240, 0.12);
    padding-top: 1.1rem;
    display: grid;
    gap: 0.35rem;
}

.spec-item:nth-child(-n + 2) {
    border-top: 0;
    padding-top: 0;
}

.spec-label {
    font-size: 0.7rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.55);
    font-weight: 600;
}

.spec-value {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    color: var(--cream);
    font-weight: 700;
}

.spec-sub {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.85rem;
}
/* Workshop Section */
.workshop-section {
    padding: 8rem 2rem;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.workshop-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(var(--gold-rgb), 0.05), transparent 60%),
        radial-gradient(circle at 80% 40%, rgba(255, 248, 240, 0.04), transparent 60%);
    pointer-events: none;
}

.workshop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.workshop-image {
    aspect-ratio: 4 / 5;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(62, 86, 65, 0.2), rgba(13, 17, 23, 0.3)),
        url("images/ticker/4.webp") center/cover no-repeat;
    box-shadow: none;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.workshop-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.workshop-text > p {
    font-size: 1.1rem;
    color: rgba(255, 248, 240, 0.72);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding-left: 2rem;
    border-left: 2px solid rgba(var(--gold-rgb), 0.8);
}

.value-item h4 {
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p {
    font-size: 0.95rem;
    color: rgba(255, 248, 240, 0.7);
    line-height: 1.6;
}

/* FAQ Section */
.process-faq-section {
    padding: 8rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.process-faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.process-faq-section h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--ink);
    margin-bottom: 4rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(13, 17, 23, 0.12);
    position: relative;
    z-index: 1;
}

.faq-item {
    background: transparent;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(13, 17, 23, 0.12);
    border-left: 3px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease;
}

.faq-item:hover {
    background: rgba(13, 17, 23, 0.02);
}

.faq-item.active {
    border-left-color: var(--gold);
    background: rgba(13, 17, 23, 0.035);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1.35rem;
    color: var(--ink);
    margin: 0;
    line-height: 1.4;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question::after {
    content: "+";
    font-size: 1.6rem;
    color: var(--gold);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    color: var(--slate);
    line-height: 1.8;
    margin-top: 1rem;
    padding: 0 1.5rem;
    max-width: 60rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.faq-answer a {
    color: var(--forest);
    text-decoration: underline;
}

/* Final CTA Section */
.final-cta-section {
    padding: 10rem 2rem;
    position: relative;
    overflow: hidden;
    background: var(--forest);
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 17, 23, 0.3) 0%, rgba(13, 17, 23, 0.75) 100%),
        url("images/cover7.webp") center/cover no-repeat;
    filter: blur(6px);
    transform: scale(1.05);
    z-index: 0;
}

.final-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.final-cta-content > p {
    font-size: 1.25rem;
    color: rgba(255, 248, 240, 0.9);
    margin-bottom: 3rem;
}

.final-cta-content .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

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

    .standards-specboard {
        grid-template-columns: 1fr;
    }

    .spec-item {
        border-top: 1px solid rgba(255, 248, 240, 0.12);
        padding-top: 1rem;
    }

    .spec-item:nth-child(-n + 2) {
        border-top: 1px solid rgba(255, 248, 240, 0.12);
        padding-top: 1rem;
    }

    .spec-item:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .workshop-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .workshop-image {
        aspect-ratio: 16 / 10;
    }

    .faq-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .process-hero {
        min-height: 100vh;
        padding: 6rem 1.5rem;
    }

    .hero-trust-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-trust-row span:nth-child(2n) {
        display: none;
    }

    .overview-section,
    .process-steps-section,
    .standards-section,
    .workshop-section,
    .process-faq-section,
    .final-cta-section {
        padding: 6rem 1.5rem;
    }

    .overview-layout {
        grid-template-columns: 1fr;
    }

    .overview-video-wrapper {
        order: 1;
        justify-self: start;
        max-width: 100%;
    }

    .overview-text {
        order: 2;
        text-align: center;
    }

    .overview-stats {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0.75rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .overview-stats::-webkit-scrollbar {
        display: none;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }

    .step-header {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

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

    .step-deliverables {
        padding-left: 0;
    }

    .process-steps-section.variant-sash .step-number {
        position: static;
        font-size: 2.2rem;
        letter-spacing: 3px;
        color: var(--gold);
        margin-bottom: 0.5rem;
    }

    .process-steps-section.variant-sash .step-header h3,
    .process-steps-section.variant-sash .step-header p {
        margin-right: 0;
    }

    .process-steps-section.variant-sash .step-deliverables {
        grid-template-columns: 1fr;
    }


    .overview-stats {
        flex-direction: column;
        align-items: stretch;
    }

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

    .final-cta-content .cta-buttons {
        flex-direction: column;
    }

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

    .faq-question,
    .faq-answer {
        padding: 0 0.75rem;
    }

    .faq-question {
        font-size: 1.15rem;
    }
}
