/* ==========================================================================
   RUNDLE LANDSCAPING — ABOUT US PAGE STYLES
   ========================================================================== */

/* ═══════════════════════════════════════════
   PAGE HERO (Shared across interior pages)
   ═══════════════════════════════════════════ */
.page-hero {
    position: relative;
    padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, rgba(28,32,32,0.85) 0%, rgba(28,32,32,0.7) 40%, rgba(28,32,32,0.85) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

#about-hero { background-image: linear-gradient(rgba(28,32,32,0.7), rgba(28,32,32,0.7)), url('../assets/images/hero/services-hero.jpg'); }
#services-hero { background-image: linear-gradient(rgba(28,32,32,0.7), rgba(28,32,32,0.7)), url('../assets/images/hero/services-hero.jpg'); }
#projects-hero { background-image: linear-gradient(rgba(28,32,32,0.7), rgba(28,32,32,0.7)), url('../assets/images/hero/projects-hero.jpg'); }
#reviews-hero { background-image: linear-gradient(rgba(28,32,32,0.7), rgba(28,32,32,0.7)), url('../assets/images/hero/reviews-hero.jpg'); }
#blog-hero { background-image: linear-gradient(rgba(28,32,32,0.7), rgba(28,32,32,0.7)), url('../assets/images/hero/blog-hero.jpg'); }
#faq-hero { background-image: linear-gradient(rgba(28,32,32,0.7), rgba(28,32,32,0.7)), url('../assets/images/hero/faq-hero.jpg'); }


.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(92,122,92,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(196,168,130,0.08) 0%, transparent 50%);
}

.page-hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-breadcrumb {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--space-lg);
    letter-spacing: var(--ls-wide);
}

.page-hero-breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-base);
}

.page-hero-breadcrumb a:hover {
    color: var(--clr-sage-light);
}

.page-hero-breadcrumb .separator {
    margin: 0 var(--space-sm);
    color: rgba(255,255,255,0.25);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    color: white;
    margin-bottom: var(--space-lg);
    letter-spacing: var(--ls-tight);
}

.page-hero-subtitle {
    font-size: var(--fs-body-lg);
    color: rgba(255,255,255,0.65);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   ABOUT — INTRO / OUR STORY
   ═══════════════════════════════════════════ */
.about-intro {
    padding: var(--space-5xl) 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--clr-charcoal) 0%, var(--clr-charcoal-light) 50%, var(--clr-sage-dark) 100%);
}

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

.about-intro-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.25);
    font-size: var(--fs-small);
}

.about-intro-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--clr-sage);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-intro-content .section-tag {
    text-align: left;
}

.about-intro-content h2 {
    margin-bottom: var(--space-lg);
}

.about-intro-text {
    font-size: var(--fs-body);
    color: var(--clr-text-soft);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-lg);
}

.about-intro-highlight {
    background: rgba(92,122,92,0.06);
    border-left: 3px solid var(--clr-sage);
    padding: var(--space-lg) var(--space-xl);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: var(--space-xl);
}

.about-intro-highlight p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: var(--fs-body-lg);
    color: var(--clr-text);
    margin-bottom: 0;
    line-height: var(--lh-relaxed);
}

.about-signature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-signature-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--clr-sage), var(--clr-sage-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--fw-bold);
    font-size: var(--fs-body-lg);
    flex-shrink: 0;
}

.about-signature-info strong {
    display: block;
    color: var(--clr-text);
    font-size: var(--fs-body);
}

.about-signature-info span {
    font-size: var(--fs-small);
    color: var(--clr-text-muted);
}

.about-experience-callout {
    margin-top: var(--space-2xl);
    padding: var(--space-xl) var(--space-xl);
    border-left: 3px solid var(--clr-sage-light);
    background: linear-gradient(135deg, rgba(126,200,211,0.06) 0%, transparent 100%);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-experience-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: var(--fs-body);
    color: var(--clr-sage-light);
    letter-spacing: var(--ls-base);
    margin-bottom: var(--space-sm);
}

.about-experience-text {
    font-size: var(--fs-body);
    color: var(--clr-text-muted);
    line-height: var(--lh-relaxed);
}

@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-intro-image-accent {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   ABOUT — VALUES
   ═══════════════════════════════════════════ */
.about-values {
    background: var(--clr-cream);
    padding: var(--space-5xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.value-card {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-sage), var(--clr-sage-light));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    transition: width var(--transition-smooth);
}

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

.value-card:hover::after {
    width: 60%;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(92,122,92,0.08);
    border-radius: var(--radius-lg);
    font-size: 1.6rem;
    transition: all var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--clr-sage);
    transform: scale(1.05);
}

.value-card:hover .value-icon svg {
    color: white;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--clr-sage);
    transition: color var(--transition-smooth);
}

.value-card h3 {
    font-family: var(--font-body);
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: var(--fs-small);
    color: var(--clr-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
}

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

/* ═══════════════════════════════════════════
   ABOUT — TIMELINE
   ═══════════════════════════════════════════ */
.about-timeline {
    padding: var(--space-5xl) 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--clr-sage), var(--clr-stone-light), var(--clr-sage));
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: var(--space-2xl);
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    grid-column: 1;
    padding-right: var(--space-xl);
}

.timeline-item:nth-child(odd) .timeline-spacer {
    grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    padding-left: var(--space-xl);
}

.timeline-item:nth-child(even) .timeline-spacer {
    grid-column: 1;
}

.timeline-dot {
    grid-column: 2;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--clr-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--fw-bold);
    font-size: var(--fs-xs);
    z-index: 1;
    box-shadow: 0 0 0 6px var(--clr-warm-white), 0 0 0 8px rgba(92,122,92,0.2);
}

.timeline-content h3 {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
    color: var(--clr-text);
}

.timeline-content p {
    font-size: var(--fs-small);
    color: var(--clr-text-muted);
    margin-bottom: 0;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: var(--fw-bold);
    color: var(--clr-sage);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 22px;
    }

    .timeline-item {
        grid-template-columns: 44px 1fr;
        gap: 0;
    }

    .timeline-item .timeline-spacer {
        display: none;
    }

    .timeline-dot {
        grid-column: 1;
        grid-row: 1;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        text-align: left;
        padding-left: var(--space-lg);
        padding-right: 0;
    }
}

/* ═══════════════════════════════════════════
   ABOUT — CREDENTIALS
   ═══════════════════════════════════════════ */
.about-credentials {
    background: var(--clr-charcoal-deep);
    padding: var(--space-5xl) 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-xl);
}

.credential-item {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
}

.credential-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(92,122,92,0.3);
    transform: translateY(-4px);
}

.credential-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(92,122,92,0.15);
    border-radius: var(--radius-full);
}

.credential-icon svg {
    width: 26px;
    height: 26px;
    color: var(--clr-sage-light);
}

.credential-item h4 {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: white;
    margin-bottom: var(--space-xs);
}

.credential-item p {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.45);
    margin-bottom: 0;
    line-height: var(--lh-normal);
}

@media (max-width: 1024px) {
    .credentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════
   ABOUT — CTA BANNER
   ═══════════════════════════════════════════ */
.about-cta {
    padding: var(--space-5xl) 0;
    text-align: center;
}

.about-cta-card {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--clr-sage-dark), var(--clr-sage));
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.about-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.about-cta-card h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    color: white;
    margin-bottom: var(--space-md);
    position: relative;
}

.about-cta-card p {
    color: rgba(255,255,255,0.8);
    font-size: var(--fs-body-lg);
    margin-bottom: var(--space-xl);
    position: relative;
}

.about-cta-card .btn {
    position: relative;
}
