/* ===================================
   About Page Styles
   =================================== */

.about-page {
    background: var(--white);
}

.about-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--soft-black) 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-hero-main {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}

.about-hero-tagline {
    font-family: var(--font-editorial);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.about-section:last-child {
    border-bottom: none;
}

.section-inner {
    max-width: 800px;
    margin: 0 auto;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-subheading {
    font-family: var(--font-editorial);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.about-intro-text {
    font-family: var(--font-editorial);
    font-size: 1.75rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-body-text {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-body-text em {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--text-primary);
}

.about-manifesto {
    font-family: var(--font-editorial);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--primary-black);
    margin: 2.5rem 0;
    text-align: center;
}

.about-value-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-value-list li {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.about-value-list .bullet {
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: 700;
}

.founder-quote {
    font-family: var(--font-editorial);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.founder-closing {
    font-weight: 600;
    color: var(--text-primary);
}

.founder-signature {
    font-family: var(--font-editorial);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 2rem;
    text-align: right;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-black);
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-item h3:hover {
    background: var(--primary-black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.values-statement {
    text-align: center;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 2rem;
}

.closing-statement {
    font-family: var(--font-editorial);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.final-tagline {
    font-size: 2rem;
    margin: 3rem 0 2rem;
}

/* Mobile Responsiveness for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .about-content-wrapper {
        padding: 0 1.5rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .section-subheading {
        font-size: 1.25rem;
    }

    .about-intro-text {
        font-size: 1.375rem;
    }

    .about-body-text {
        font-size: 1rem;
    }

    .about-manifesto {
        font-size: 1.25rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .closing-statement {
        font-size: 1.75rem;
    }
}

/* ===================================
   Legal Pages Styles (Privacy, Terms, Shipping)
   =================================== */

.legal-page {
    background: var(--white);
}

.legal-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.legal-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.legal-updated {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-inner {
    background: var(--white);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-main-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-black);
}

.legal-section-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.legal-intro-text {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.legal-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.legal-contact {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 1.5rem;
}

.legal-contact a {
    color: var(--primary-black);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-black);
    transition: all 0.2s ease;
}

.legal-contact a:hover {
    color: var(--text-secondary);
    border-bottom-color: var(--text-secondary);
}

.contact-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.policy-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 4rem 0;
}

.policy-notice {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-black);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.legal-notice-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Responsiveness for Legal Pages */
@media (max-width: 768px) {
    .legal-header {
        padding: 3rem 1.5rem 2rem;
    }

    .legal-content-wrapper {
        padding: 2rem 1.5rem;
    }

    .legal-main-heading {
        font-size: 1.75rem;
    }

    .legal-section-heading {
        font-size: 1.25rem;
    }

    .legal-intro-text,
    .legal-text {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 1.5rem;
    }
}

/* ===================================
   FAQ Page Styles
   =================================== */

.faq-page {
    background: var(--white);
}

.faq-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--soft-black) 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.faq-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
}

.faq-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.faq-inner {
    background: var(--white);
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category:last-child {
    margin-bottom: 2rem;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-black);
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-black);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question[aria-expanded="true"] {
    background: var(--bg-light);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-black);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Mobile Responsiveness for FAQ Page */
@media (max-width: 768px) {
    .faq-header {
        padding: 4rem 1.5rem 3rem;
    }

    .faq-content-wrapper {
        padding: 2rem 1.5rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
}