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

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

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

.about-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%),
        url("images/cover3.webp") center/cover no-repeat,
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(var(--gold-rgb), 0.03) 10px,
            rgba(var(--gold-rgb), 0.03) 11px
        );
    animation: subtleShift 20s ease-in-out infinite;
    z-index: 0;
}

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

.about-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;
}

.about-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;
}

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

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

.story-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% 60%, rgba(13, 17, 23, 0.02), transparent 50%);
    pointer-events: none;
}

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

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-pillars {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pillar {
    padding-left: 2rem;
    border-left: 2px solid var(--gold);
}

.pillar h3 {
    font-size: 1.35rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pillar p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
}

/* What We Do Section */
.what-we-do-section {
    padding: 8rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(var(--gold-rgb), 0.03), transparent 60%),
        radial-gradient(circle at 80% 10%, rgba(13, 17, 23, 0.02), transparent 55%);
    pointer-events: none;
}

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

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

.what-header p {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 720px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.what-category {
    border: 1px solid rgba(13, 17, 23, 0.12);
    padding: 2.75rem 2.5rem;
    background: rgba(13, 17, 23, 0.02);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.what-category h3 {
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.what-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.what-category li {
    padding: 0.85rem 0;
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(13, 17, 23, 0.08);
}

.what-category li:last-child {
    border-bottom: 0;
}

.what-category li::before {
    content: "\00B7";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.what-cta {
    text-align: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.what-cta p {
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 2rem;
    font-weight: 500;
}

.what-category li::before {
    content: none;
}

/* Craft Section */
.craft-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    background: var(--ink);
}

.craft-visual {
    position: relative;
    overflow: hidden;
}

.craft-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(62, 86, 65, 0.2), rgba(13, 17, 23, 0.3)),
        url("images/cover8.webp") center/cover no-repeat;
}

.craft-content {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.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;
}

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

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

.craft-details h4 {
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.craft-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.craft-details li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: rgba(255, 248, 240, 0.8);
    position: relative;
    font-size: 0.95rem;
}

.craft-details li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.25rem;
}

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

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

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

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

.difference-header p {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 720px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.difference-item {
    border: 1px solid rgba(13, 17, 23, 0.12);
    padding: 2.75rem 2.5rem;
    background: rgba(13, 17, 23, 0.02);
    position: relative;
}

.difference-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.difference-item h3 {
    font-size: 1.35rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.difference-item p {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.8;
}

/* Trust Section */
.trust-section {
    padding: 8rem 2rem;
    background: var(--ink);
}

.trust-section h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    margin-bottom: 5rem;
    letter-spacing: -1px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.trust-card {
    background: transparent;
    border: 1px solid rgba(255, 248, 240, 0.12);
    border-radius: 0;
    padding: 3rem;
    transition: color 0.3s ease;
}

.trust-card:hover {
    transform: none;
    background: transparent;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.trust-card h3 {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.trust-card p {
    font-size: 0.95rem;
    color: rgba(255, 248, 240, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.trust-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.trust-card a:hover {
    opacity: 0.7;
}

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

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

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: transparent;
    padding: 3rem;
    border-radius: 0;
    border: 1px solid rgba(13, 17, 23, 0.12);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: color 0.3s ease;
}

.testimonial-card:hover {
    transform: none;
    box-shadow: none;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    line-height: 1;
}

.testimonial-card p {
    color: var(--slate);
    line-height: 1.8;
    font-size: 1rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(46, 52, 64, 0.1);
}

.testimonial-author strong {
    color: var(--ink);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--slate);
    font-size: 0.9rem;
    opacity: 0.7;
}

.clients-note {
    text-align: center;
    padding: 2rem;
    background: transparent;
    border-radius: 0;
    border-top: 1px solid rgba(13, 17, 23, 0.12);
    border-bottom: 1px solid rgba(13, 17, 23, 0.12);
    position: relative;
    z-index: 1;
}

.clients-note p {
    font-size: 1rem;
    color: var(--slate);
    font-style: italic;
}

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

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(13, 17, 23, 0.7) 0%, rgba(62, 86, 65, 0.6) 100%),
        url("images/cover9.webp") center/cover no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    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) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

    .craft-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .craft-visual {
        min-height: 400px;
    }

    .craft-content {
        padding: 5rem 3rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

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

    .story-section,
    .what-we-do-section,
    .difference-section,
    .trust-section,
    .testimonials-section,
    .final-cta-section {
        padding: 6rem 1.5rem;
    }

    .craft-content {
        padding: 4rem 2rem;
    }

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