.about-page {
    background: linear-gradient(180deg, #fffaf3 0%, #ffffff 48%);
}

.about-hero {
    background: radial-gradient(circle at top right, #ffd9b7, rgba(255, 255, 255, 0) 48%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: start;
}

.about-kicker {
    display: inline-block;
    color: #b14a00;
    background: #ffe7d2;
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #2f1200;
    margin-bottom: 12px;
}

.about-hero-copy {
    color: #614b3d;
    line-height: 1.85;
    max-width: 680px;
}

.about-hero-cta {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-secondary-btn {
    border: 1px solid #ff6a00;
    color: #ff6a00;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.about-hero-card {
    background: #fff;
    border: 1px solid #f3dfcf;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(80, 35, 0, 0.08);
}

.about-hero-card h3 {
    margin-bottom: 14px;
    color: #2f1200;
}

.about-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-hero-card li {
    padding: 10px 0;
    border-bottom: 1px dashed #ecd9c9;
    color: #5f4a3c;
}

.about-hero-card li:last-child {
    border-bottom: 0;
}

.about-hero-card i {
    color: #ff6a00;
    margin-right: 8px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
}

.about-story-card,
.about-info-card {
    background: #fff;
    border: 1px solid #f3dfcf;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(80, 35, 0, 0.08);
}

.about-story-card h2,
.about-info-card h3 {
    color: #2f1200;
    margin-bottom: 12px;
}

.about-info-stack {
    display: grid;
    gap: 18px;
}

.about-info-card p {
    color: #5f4a3c;
    line-height: 1.8;
}

.about-info-card i {
    color: #ff6a00;
    margin-right: 8px;
}

.about-section-head {
    text-align: center;
    margin-bottom: 20px;
}

.about-section-head h2 {
    color: #2f1200;
    margin-bottom: 8px;
}

.about-section-head p {
    color: #7c6556;
}

.about-values-grid,
.about-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-value-card,
.about-link-card {
    background: #fff;
    border: 1px solid #f3dfcf;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 18px rgba(80, 35, 0, 0.07);
}

.about-value-card i,
.about-link-card i {
    color: #ff6a00;
    font-size: 22px;
    margin-bottom: 8px;
}

.about-value-card h3,
.about-link-card h3 {
    color: #2f1200;
    margin-bottom: 8px;
}

.about-value-card p {
    color: #6f594a;
    line-height: 1.7;
}

.about-link-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: inherit;
}

.about-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(80, 35, 0, 0.12);
}

.about-social-row {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.about-social-row h3 {
    color: #2f1200;
}

.about-social-icons {
    display: flex;
    gap: 12px;
}

.about-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #f1dccb;
    color: #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-social-icons a:hover {
    background: #ff6a00;
    color: #fff;
}

@media (max-width: 1024px) {
    .about-hero-grid,
    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid,
    .about-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-values-grid,
    .about-links-grid {
        grid-template-columns: 1fr;
    }

    .about-social-row {
        flex-direction: column;
        align-items: flex-start;
    }
}