/* ===== ABOUT PAGE ===== */
.about-hero {
    position: relative;
    min-height: 40vh;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, #2c1e13, #3a261a);
    padding: 0 24px 50px;
}
.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.about-hero h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 8px;
}
.about-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}
.about-subtitle {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fbbf24;
    margin-bottom: 12px;
}

.about-section {
    background: #fffbf5;
    padding: 60px 24px 80px;
}
.about-content {
    max-width: 900px;
    margin: 0 auto;
}
.about-content h2 {
    font-size: 1.8rem;
    color: #2d3436;
    margin: 40px 0 16px;
}
.about-content h2:first-child {
    margin-top: 0;
}
.about-content p {
    font-size: 1.02rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 20px;
}

/* About Grid — Image + Text 2-column */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
.about-image-col {
    position: relative;
}
.about-image {
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}
.about-text-col p:first-child {
    font-size: 1.15rem;
    font-weight: 500;
    color: #2d3436;
}

/* Contact Grid (about page bottom) */
.about-contact-section {
    background: #fff;
    border-top: 1px solid #f0ebe4;
}
.about-contact-section .about-content h2 {
    text-align: center;
    margin-bottom: 32px;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.contact-card {
    background: #fffbf5;
    border: 1px solid #f0ebe4;
    border-radius: 1rem;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.contact-card h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.05rem;
    color: #2d3436;
    margin-bottom: 10px;
}
.contact-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-card i {
    color: #e8734a;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.contact-card a {
    color: #e8734a;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-card a:hover {
    color: #c2693d;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}
.value-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(232, 115, 74, 0.08);
}
.value-card i {
    font-size: 2rem;
    color: #e8734a;
    margin-bottom: 16px;
}
.value-card h3 {
    font-size: 1.1rem;
    color: #2d3436;
    margin-bottom: 8px;
}
.value-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .about-hero h1 { font-size: 1.8rem; }
    .about-subtitle { font-size: 0.78rem; letter-spacing: 1.5px; }
}
