/* ============================================
   ServiceSpace Pods - About Page Styles
   Invitational, Spacious Design
   
   Dependencies: uni_variables.css, uni_base.css, uni_components.css
   ============================================ */

/* ============================================
   HERO - The Question
   ============================================ */

.about-hero {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-welcome {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3.5rem;
    }
    
    .about-hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtext {
        font-size: 1.05rem;
    }
}

/* ============================================
   INVITATION SECTION
   ============================================ */

.invitation-section {
    padding: 6rem 0;
    background: white;
}

.invitation-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.invitation-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.invitation-lead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--teal);
    margin-bottom: 2.5rem;
}

.invitation-text {
    text-align: left;
}

.invitation-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.invitation-text em {
    color: var(--charcoal);
    font-style: italic;
}

.invitation-text strong {
    color: var(--charcoal);
    font-weight: 600;
}

.scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    color: var(--teal);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.scroll-hint i {
    font-size: 1.25rem;
    animation: gentle-bounce 2s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.scroll-hint:hover {
    color: var(--teal-deep);
}

@media (max-width: 768px) {
    .invitation-section {
        padding: 4rem 0;
    }
    
    .invitation-content h2 {
        font-size: 2rem;
    }
    
    .invitation-lead {
        font-size: 1.25rem;
    }
}

/* ============================================
   RHYTHM SECTION - Head, Hands, Heart
   ============================================ */

.rhythm-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.rhythm-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.rhythm-moment {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.rhythm-when {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.rhythm-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid;
    transition: all var(--transition-base);
}

.rhythm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-large);
}

.rhythm-card-gold { border-top-color: var(--gold); }
.rhythm-card-sage { border-top-color: var(--sage); }
.rhythm-card-coral { border-top-color: var(--coral); }

.rhythm-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    object-fit: contain;
}

.rhythm-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.rhythm-card-gold .rhythm-label { color: var(--gold); }
.rhythm-card-sage .rhythm-label { color: var(--sage); }
.rhythm-card-coral .rhythm-label { color: var(--coral); }

.rhythm-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.rhythm-card > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.rhythm-example {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 1rem;
}

.rhythm-example em {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.5;
}

.rhythm-connector {
    width: 40px;
    height: 80px;
    color: var(--border-soft);
    flex-shrink: 0;
    margin-top: 4rem;
}

.rhythm-note {
    max-width: 700px;
    margin: 3.5rem auto 0;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.rhythm-note strong {
    color: var(--charcoal);
}

@media (max-width: 900px) {
    .rhythm-flow {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .rhythm-moment {
        max-width: 350px;
        width: 100%;
    }
    
    .rhythm-connector {
        width: 80px;
        height: 40px;
        margin: 0;
        transform: rotate(90deg);
    }
}

/* ============================================
   FIELD SECTION - Many Hearts
   ============================================ */

.field-section {
    padding: 6rem 0;
    background: white;
}

.field-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.field-intro h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.field-intro p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.field-intro strong {
    color: var(--teal);
}

.field-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.field-philosophy p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.field-highlight {
    background: var(--teal-pale);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--teal);
    margin: 1.5rem 0 !important;
}

.field-highlight em {
    color: var(--teal);
    font-style: italic;
}

.field-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--teal);
    text-decoration: none;
    transition: all var(--transition-base);
}

.field-link:hover {
    color: var(--teal-deep);
    gap: 0.65rem;
}

.field-breakdown {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.field-breakdown h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Energy note explaining this is an example */
.energy-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.85;
}

.energy-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.energy-row {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--teal);
}

.energy-row:nth-child(2) { border-left-color: var(--coral); }
.energy-row:nth-child(3) { border-left-color: var(--gold); }
.energy-row:nth-child(4) { border-left-color: var(--sage); }

.energy-row-more {
    background: var(--teal-pale);
    border-left-color: var(--teal);
}

.energy-hours {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--teal);
    white-space: nowrap;
    min-width: 70px;
}

.energy-what {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .field-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ============================================
   APPROACH SECTION - Light Touch Principles
   ============================================ */

.approach-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
}

.section-header-light h2 {
    color: white;
}

.section-header-light h2::after {
    display: none;
}

.approach-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all var(--transition-base);
}

.approach-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.approach-icon {
    width: 50px;
    height: 50px;
    background: var(--teal-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-icon i {
    font-size: 1.25rem;
    color: var(--teal);
}

.approach-text {
    flex: 1;
}

.approach-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.approach-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.approach-link {
    width: 36px;
    height: 36px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    text-decoration: none;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.approach-link:hover {
    background: var(--teal);
    color: white;
}

@media (max-width: 768px) {
    .approach-items {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   STORY SECTION
   ============================================ */

.story-section {
    padding: 6rem 0;
    background: var(--cream);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-text em {
    color: var(--charcoal);
}

.story-text a:not(.btn) {
    color: var(--teal);
    font-weight: 500;
    text-decoration: none;
}

.story-text a:not(.btn):hover {
    text-decoration: underline;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

@media (max-width: 900px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .story-image {
        order: -1;
    }
}

/* ============================================
   FEATURED TESTIMONIAL - Michael's Poem
   ============================================ */

.featured-testimonial-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, white 100%);
}

.featured-testimonial {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-large);
    overflow: hidden;
}

.featured-testimonial-video {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.video-play-btn {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    background: var(--charcoal);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: opacity var(--transition-base);
}

.video-play-btn:hover .video-thumbnail {
    opacity: 0.7;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform var(--transition-base);
}

.video-play-btn:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay i {
    font-size: 4rem;
}

.video-duration {
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(0,0,0,0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.featured-testimonial-content {
    padding: 2.5rem 3rem 2.5rem 0;
}

.testimonial-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--coral);
    background: rgba(227, 119, 104, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.featured-testimonial-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.poem-excerpt {
    margin-bottom: 1.5rem;
}

.poem-excerpt p {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.poem-excerpt em {
    color: var(--charcoal);
}

.btn-outline-teal {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-teal:hover {
    background: var(--teal);
    color: white;
}

.testimonial-attribution {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-attribution strong {
    color: var(--teal);
}

@media (max-width: 900px) {
    .featured-testimonial {
        grid-template-columns: 1fr;
    }
    
    .featured-testimonial-video {
        min-height: 250px;
    }
    
    .featured-testimonial-content {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .featured-testimonial-content h3 {
        font-size: 1.5rem;
    }
    
    .poem-excerpt p {
        font-size: 0.95rem;
    }
}

/* ============================================
   VIDEO MODAL
   ============================================ */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 95%;
    max-width: 1100px;
    max-height: 90vh;
    background: var(--charcoal);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.modal-video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: black;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-poem-text {
    padding: 2rem 2.5rem;
    max-height: 40vh;
    overflow-y: auto;
    background: var(--charcoal);
    color: rgba(255,255,255,0.9);
}

.modal-poem-text h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: white;
}

.poem-full-text {
    columns: 2;
    column-gap: 3rem;
}

.poem-full-text p {
    font-family: var(--font-display);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    break-inside: avoid;
}

.poem-full-text strong {
    color: var(--coral);
}

.poem-attribution {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    text-align: right;
    column-span: all;
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
    }
    
    .poem-full-text {
        columns: 1;
    }
    
    .modal-poem-text {
        padding: 1.5rem;
        max-height: 35vh;
    }
}

/* ============================================
   RIPPLES SECTION - Transformation Stories
   ============================================ */

.ripples-section {
    padding: 5rem 0;
    background: white;
}

.ripples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ripple-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 2rem;
    border-left: 4px solid var(--teal);
}

.ripple-card:nth-child(2) { border-left-color: var(--sage); }
.ripple-card:nth-child(3) { border-left-color: var(--gold); }

.ripple-card p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.ripple-card footer {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ripple-card footer strong {
    color: var(--teal);
}

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

@media (max-width: 900px) {
    .ripples-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 5rem 0;
    background: var(--cream);
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.faq-item[open] {
    box-shadow: var(--shadow-medium);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--teal);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

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

.faq-answer p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--teal);
    text-decoration: none;
}

.faq-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-item summary {
        padding: 1rem 1.25rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
}

.cta-content {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.cta-content > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-actions {
    margin-bottom: 1.5rem;
}

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

.cta-secondary a {
    color: var(--teal);
    font-weight: 500;
    text-decoration: none;
}

.cta-secondary a:hover {
    text-decoration: underline;
}

