.page-hero {
    padding-top: 72px;
    background: radial-gradient(circle at 20% 20%, #4C1300 0%, #111111 80%);
    position: relative; overflow: hidden;
}
.page-hero::before { display: none; }
.page-hero-inner { padding: 72px 0 64px; position: relative; z-index: 1; }
.sec-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
    color: var(--accent); margin-bottom: 16px;
}
.page-hero-title {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 20px;
    color: var(--white);
}
.page-hero-title em { font-style: normal; color: var(--accent); }
.page-hero-sub {
    font-size: 18px; color: rgba(255,255,255,0.7); font-weight: 300;
    line-height: 1.7; max-width: 560px;
}

/* ── STORY ── */
.story-section { padding: 100px 0; }
.story-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.story-img {
    border-radius: 24px; overflow: hidden; height: 500px; position: relative;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(to top, rgba(44,24,16,0.15), transparent);
}
.story-year {
    position: absolute; bottom: 28px; left: 28px; z-index: 2;
    background: white; border-radius: 12px; padding: 12px 18px;
    font-size: 13px; font-weight: 700; color: var(--text);
}
.story-year strong { font-size: 24px; font-weight: 800; color: var(--accent); display: block; line-height: 1; }
.sec-eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
    color: var(--accent); margin-bottom: 14px;
}
.sec-title {
    font-size: clamp(28px, 4vw, 46px); font-weight: 800;
    letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 24px; color: var(--text);
}
.sec-title .thin { font-weight: 300; color: var(--text-muted); }
.story-text p {
    font-size: 15px; color: var(--text-mid); line-height: 1.8;
    font-weight: 300; margin-bottom: 16px;
}
.story-text p:last-child { margin-bottom: 0; }

/* ── VALUES ── */
.values-section { padding: 80px 0; background: var(--cream-2); }
.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.value-card {
    background: var(--cream); border-radius: 20px; padding: 36px 28px;
    border: 1px solid rgba(212,196,168,0.3);
    transition: all 0.4s var(--ease-out);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.08);
    border-color: rgba(255,79,0,0.15);
}
.value-icon {
    margin-bottom: 20px; display: block;
}
.value-icon img {
    width: 36px; height: 36px;
    object-fit: contain;
    filter: brightness(0);
}
.value-title {
    font-size: 16px; font-weight: 800; color: var(--text);
    letter-spacing: -0.01em; margin-bottom: 10px;
}
.value-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── TEAM ── */
.team-section { padding: 100px 0; }
.team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px;
}
.team-card {
    background: var(--cream-2); border-radius: 20px; padding: 32px 24px;
    text-align: center; border: 1px solid rgba(212,196,168,0.3);
    transition: all 0.4s var(--ease-out);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.team-avatar {
    width: 88px; height: 88px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 18px;
    border: 3px solid var(--cream);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--text-muted); }

/* ── COUNTERS ── */
.about-counters { padding: 80px 0; background: var(--bark); }
.counters-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.counter-item {
    text-align: center; padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.counter-item:last-child { border-right: none; }
.counter-item .counter-num {
    font-size: 52px; font-weight: 800; line-height: 1;
    letter-spacing: -0.03em; margin-bottom: 8px;
    color: white;
}
.counter-item .counter-num .counter-val {
    color: white;
}
.counter-num .counter-suffix { color: var(--accent); }
.counter-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
}

/* ── CTA ── */
.about-cta {
    background: var(--cream-2); padding: 80px 28px; text-align: center;
}
.about-cta-inner { max-width: 600px; margin: 0 auto; }
.about-cta h2 {
    font-size: clamp(28px, 4vw, 46px); font-weight: 800;
    color: var(--text); letter-spacing: -0.02em; margin-bottom: 14px;
}
.about-cta h2 em { font-style: normal; color: var(--accent); }
.about-cta p {
    font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px;
}
.btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 36px; background: var(--accent); color: white;
    border-radius: 50px; font-size: 14px; font-weight: 800;
    letter-spacing: 0.04em; transition: all 0.35s;
}
.btn-cta:hover { background: #E84500; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,79,0,0.4); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .story-layout { grid-template-columns: 1fr; gap: 40px; }
    .story-img { height: 320px; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
    .counter-item:nth-child(2) { border-right: none; }
}
@media (max-width: 540px) {
    .team-grid { grid-template-columns: 1fr; }
}