/* ==========================================
   ℹ️ ABOUT SECTION — full-width ribbon, two columns
   ========================================== */
.about {
    text-align: center;
    background: var(--text-color);
    box-shadow:
        0 6px 28px rgba(58, 34, 20, 0.20),
        0 -4px 20px rgba(58, 34, 20, 0.10);
    padding: 5rem 5%;
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-col h2 {
    margin-bottom: 1rem;
    color: var(--bg-color);
}

.about-text-col p {
    color: rgba(254, 247, 238, 0.85);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ==========================================
   📖 STORY EYEBROW TAG
   ========================================== */
.section-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    background: rgba(200, 131, 107, 0.12);
    border: 1px solid rgba(200, 131, 107, 0.3);
    padding: 0.3rem 0.9rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

/* ==========================================
   🤝 PARTNERS SECTION
   ========================================== */
.partners-section {
    background-color: transparent;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
    min-width: 160px;
    box-shadow: 0 2px 8px rgba(58, 34, 20, 0.05);
}

.partner-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(200, 131, 107, 0.15);
    transform: translateY(-3px);
}

.partner-logo {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: var(--transition);
}

.partner-card:hover .partner-logo {
    filter: grayscale(0) opacity(1);
}

.partner-name-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.partner-card:hover .partner-name-text {
    color: var(--primary-color);
}

/* ==========================================
   💬 TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background: linear-gradient(160deg, rgba(58, 34, 20, 0.03) 0%, rgba(200, 131, 107, 0.06) 100%);
    padding-left: 0;
    padding-right: 0;
}

.testimonials-section .section-title {
    padding: 0 5%;
}

.testimonials-grid {
    display: flex;
    gap: 1.5rem;
    padding: 0 5% 1.5rem 5%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--text-color);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-width: 320px;
    max-width: 360px;
    flex: 0 0 auto;
    scroll-snap-align: center;
}

/* Decorative large quote mark */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -0.1em;
    left: 0.5rem;
    font-size: 8rem;
    line-height: 1;
    color: rgba(200, 131, 107, 0.12);
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(58, 34, 20, 0.2);
}

.testimonial-stars {
    font-size: 1rem;
    color: #E8A87C;
    letter-spacing: 0.1em;
}

.testimonial-quote {
    font-family: 'Lancelot', serif;
    font-size: 1.15rem;
    color: rgba(253, 222, 200, 0.9);
    line-height: 1.7;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.testimonial-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.testimonial-role {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: rgba(253, 222, 200, 0.45);
    font-weight: 500;
}

/* ==========================================
   📞 CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--surface-color);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-container p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-text-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-text-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
    transition: var(--transition);
    font-size: 1.2rem;
}

.contact-text-links a:hover {
    color: var(--text-color);
}

